openxml/openxml-docx

View on GitHub
lib/openxml/docx/properties/table_row_height.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class TableRowHeight < ComplexProperty
        tag :trHeight

        attribute :hRule, one_of: %i(auto atLeast exact), namespace: :w
        attribute :val, expects: :positive_integer, namespace: :w

      end
    end
  end
end