class OoxmlParser::ShapeMargins

Class for working with Shape Margins

Attributes

left[RW]
right[RW]
top[RW]

Public Class Methods

new(left = nil, right = nil, top = nil) click to toggle source
# File lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_paragraph_run/shape/shape_properties/shape_margins.rb, line 8
def initialize(left = nil, right = nil, top = nil)
  @left = left
  @right = right
  @top = top
end