openxml/openxml-docx

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

Summary

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

module OpenXml
  module Docx
    module Properties
      class TableBorders < ContainerProperty
        tag :tblBorders
        child_class :table_border

      end
    end
  end
end