Class: OoxmlParser::LineJoin
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::LineJoin
- Defined in:
- lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
Overview
LineJoin data
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ LineJoin
Parse LineJoin object.
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
#type ⇒ Object
Returns the value of attribute type.
6 7 8 |
# File 'lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb', line 6 def type @type end |
Instance Method Details
#parse(node) ⇒ LineJoin
Parse LineJoin object
11 12 13 14 15 16 17 18 19 |
# File 'lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb', line 11 def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'round', 'bevel' @type = node_child.name.to_sym end end self end |