Class: OoxmlParser::PageBorders
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::PageBorders
- Defined in:
- lib/ooxml_parser/docx_parser/document_structure/page_properties/page_properties/page_borders.rb
Overview
Class for parsing ‘w:pgBorders` PageBorders object
Instance Attribute Summary collapse
-
#display ⇒ Symbol
readonly
Display value.
-
#offset_from ⇒ Symbol
readonly
Offset from value.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ PageBorders
Parse PageBorders.
Methods inherited from OOXMLDocumentObject
#==, #boolean_attribute_value, #initialize, #parse_xml, #with_data?
Methods included from OoxmlObjectAttributeHelper
#attribute_enabled?, #option_enabled?
Methods included from OoxmlDocumentObjectHelper
Constructor Details
This class inherits a constructor from OoxmlParser::OOXMLDocumentObject
Instance Attribute Details
#display ⇒ Symbol (readonly)
Returns display value.
7 8 9 |
# File 'lib/ooxml_parser/docx_parser/document_structure/page_properties/page_properties/page_borders.rb', line 7 def display @display end |
#offset_from ⇒ Symbol (readonly)
Returns offset from value.
9 10 11 |
# File 'lib/ooxml_parser/docx_parser/document_structure/page_properties/page_properties/page_borders.rb', line 9 def offset_from @offset_from end |
Instance Method Details
#parse(node) ⇒ PageBorders
Parse PageBorders
14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/ooxml_parser/docx_parser/document_structure/page_properties/page_properties/page_borders.rb', line 14 def parse(node) node.attributes.each do |key, value| case key when 'display' @display = value.value.to_sym when 'offsetFrom' @offset_from = value.value.to_sym end end self end |