Class: Axlsx::SheetPr

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

Overview

The SheetPr class manages serialization fo a worksheet's sheetPr element.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SerializedAttributes

#declared_attributes, included, #serialized_attributes, #serialized_element_attributes

Methods included from OptionsParser

#parse_options

Constructor Details

#initialize(worksheet, options = {}) ⇒ SheetPr

Creates a new SheetPr object

Parameters:

  • worksheet (Worksheet)

    The worksheet that owns this SheetPr object

Raises:

  • (ArgumentError)


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

def initialize(worksheet, options={})
  raise ArgumentError, "you must provide a worksheet" unless worksheet.is_a?(Worksheet)
  @worksheet = worksheet
  parse_options options
end

Instance Attribute Details

#worksheetWorksheet (readonly)

The worksheet these properties apply to!

Returns:



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

def worksheet
  @worksheet
end

Instance Method Details

#page_setup_prPageSetUpPr

The PageSetUpPr for this sheet pr object

Returns:



55
56
57
# File 'lib/axlsx/workbook/worksheet/sheet_pr.rb', line 55

def page_setup_pr
  @page_setup_pr ||= PageSetUpPr.new
end

#to_xml_string(str = '') ⇒ String

Serialize the object

Parameters:

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

    serialized output will be appended to this object if provided.

Returns:

  • (String)


46
47
48
49
50
51
# File 'lib/axlsx/workbook/worksheet/sheet_pr.rb', line 46

def to_xml_string(str = '')
  update_properties
  str << "<sheetPr #{serialized_attributes}>"
  page_setup_pr.to_xml_string(str)
  str << "</sheetPr>"
end