openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
require "openxml/docx/properties/table_cell_margin"

module OpenXml
  module Docx
    module Properties
      class TableCellMargins < ContainerProperty
        tag :tblCellMar
        child_class :table_cell_margin

      end
    end
  end
end