openxml/openxml-docx

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

Summary

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

module OpenXml
  module Docx
    module Properties
      class TableCellBorders < ContainerProperty
        tag :tcBorders
        child_class :table_cell_border

      end
    end
  end
end