Class: OoxmlParser::TableRowProperties

Inherits:
OOXMLDocumentObject show all
Defined in:
lib/ooxml_parser/common_parser/common_data/table/row/row/table_row_properties.rb

Overview

Class for describing Table Row Properties

Instance Attribute Summary collapse

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

#==, add_to_xmls_stack, copy_file_and_rename_to_zip, current_xml, dir, encrypted_file?, get_link_from_rels, #initialize, unzip_file, #with_data?

Methods included from OoxmlDocumentObjectHelper

#to_hash

Constructor Details

This class inherits a constructor from OoxmlParser::OOXMLDocumentObject

Instance Attribute Details

#cells_spacingOoxmlSize

Returns Table cell spacing.

Returns:



8
9
10
# File 'lib/ooxml_parser/common_parser/common_data/table/row/row/table_row_properties.rb', line 8

def cells_spacing
  @cells_spacing
end

#heightTableRowHeight

Returns Table Row Height.

Returns:



6
7
8
# File 'lib/ooxml_parser/common_parser/common_data/table/row/row/table_row_properties.rb', line 6

def height
  @height
end

#table_headerTrue, False

Specifies that the current row should be repeated at the top each new page on which the table is displayed. >ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference 17.4.50

Returns:

  • (True, False)


13
14
15
# File 'lib/ooxml_parser/common_parser/common_data/table/row/row/table_row_properties.rb', line 13

def table_header
  @table_header
end

Instance Method Details

#parse(node) ⇒ TableRowProperties

Parse Columns data

Parameters:

  • node (Nokogiri::XML:Element)

    with Table Row Properties data

Returns:



18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/ooxml_parser/common_parser/common_data/table/row/row/table_row_properties.rb', line 18

def parse(node)
  node.xpath('*').each do |node_child|
    case node_child.name
    when 'trHeight'
      @height = TableRowHeight.new(parent: self).parse(node_child)
    when 'tblCellSpacing'
      @cells_spacing = OoxmlSize.new.parse(node_child)
    when 'tblHeader'
      @table_header = option_enabled?(node_child)
    end
  end
  self
end