Class: Axlsx::TableStyleInfo

Inherits:
Object
  • Object
show all
Includes:
Accessors, OptionsParser, SerializedAttributes
Defined in:
lib/axlsx/workbook/worksheet/table_style_info.rb

Overview

The table style info class manages style attributes for defined tables in a worksheet

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SerializedAttributes

#declared_attributes, included, #serialized_attributes, #serialized_element_attributes, #serialized_tag

Methods included from OptionsParser

#parse_options

Constructor Details

#initialize(options = {}) ⇒ TableStyleInfo

creates a new TableStyleInfo instance

Parameters:

  • options (Hash) (defaults to: {})
  • [Boolean] (Hash)

    a customizable set of options

  • [String] (Hash)

    a customizable set of options



21
22
23
24
25
# File 'lib/axlsx/workbook/worksheet/table_style_info.rb', line 21

def initialize(options = {})
  initialize_defaults
  @name = 'TableStyleMedium9'
  parse_options options
end

Instance Attribute Details

#nameObject

The name of the table style.



41
42
43
# File 'lib/axlsx/workbook/worksheet/table_style_info.rb', line 41

def name
  @name
end

Instance Method Details

#initialize_defaultsObject

Initialize all the values to false as Excel requires them to explicitly be disabled or all will show.



34
35
36
37
38
# File 'lib/axlsx/workbook/worksheet/table_style_info.rb', line 34

def initialize_defaults
  %w(show_first_column show_last_column show_row_stripes show_column_stripes).each do |attr|
    self.send("#{attr}=", 0)
  end
end

#to_xml_string(str = '') ⇒ Object

seralizes this object to an xml string

Parameters:

  • str (String) (defaults to: '')

    the string to contact this objects serialization to.



45
46
47
# File 'lib/axlsx/workbook/worksheet/table_style_info.rb', line 45

def to_xml_string(str = '')
  serialized_tag('tableStyleInfo', str)
end