openxml/openxml-docx

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

Summary

Maintainability
A
15 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class TableCellSpacing < ComplexProperty
        tag :tblCellSpacing

        with_namespace :w do
          attribute :type, one_of: %i(auto dxa nil pct)
          attribute :width, expects: :positive_integer, displays_as: :w
        end

      end
    end
  end
end