openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class TableLayout < ComplexProperty
        tag :tblLayout

        attribute :type, one_of: %i(autofit fixed), namespace: :w

      end
    end
  end
end