openxml/openxml-docx

View on GitHub
lib/openxml/docx/elements/grid_column.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class GridColumn < OpenXml::Docx::Element
        tag :gridCol

        attribute :w, expects: :integer, namespace: :w

      end
    end
  end
end