Class: Axlsx::SheetPr
- Inherits:
-
Object
- Object
- Axlsx::SheetPr
- Includes:
- Accessors, OptionsParser, SerializedAttributes
- Defined in:
- lib/axlsx/workbook/worksheet/sheet_pr.rb
Overview
The SheetPr class manages serialization of a worksheet's sheetPr element.
Instance Attribute Summary collapse
-
#tab_color ⇒ Color
The tab color of the sheet.
-
#worksheet ⇒ Worksheet
readonly
The worksheet these properties apply to!.
Instance Method Summary collapse
-
#initialize(worksheet, options = {}) ⇒ SheetPr
constructor
Creates a new SheetPr object.
-
#outline_pr ⇒ OutlinePr
The OutlinePr for this sheet pr object.
-
#page_setup_pr ⇒ PageSetUpPr
The PageSetUpPr for this sheet pr object.
-
#to_xml_string(str = '') ⇒ String
Serialize the object.
Methods included from SerializedAttributes
#declared_attributes, included, #serialized_attributes, #serialized_element_attributes, #serialized_tag
Methods included from OptionsParser
Constructor Details
#initialize(worksheet, options = {}) ⇒ SheetPr
Creates a new SheetPr object
33 34 35 36 37 38 |
# File 'lib/axlsx/workbook/worksheet/sheet_pr.rb', line 33 def initialize(worksheet, ={}) raise ArgumentError, "you must provide a worksheet" unless worksheet.is_a?(Worksheet) @worksheet = worksheet @outline_pr = nil end |
Instance Attribute Details
#tab_color ⇒ Color
The tab color of the sheet.
46 47 48 |
# File 'lib/axlsx/workbook/worksheet/sheet_pr.rb', line 46 def tab_color @tab_color end |
#worksheet ⇒ Worksheet (readonly)
The worksheet these properties apply to!
42 43 44 |
# File 'lib/axlsx/workbook/worksheet/sheet_pr.rb', line 42 def worksheet @worksheet end |
Instance Method Details
#outline_pr ⇒ OutlinePr
The OutlinePr for this sheet pr object
68 69 70 |
# File 'lib/axlsx/workbook/worksheet/sheet_pr.rb', line 68 def outline_pr @outline_pr ||= OutlinePr.new end |
#page_setup_pr ⇒ PageSetUpPr
The PageSetUpPr for this sheet pr object
62 63 64 |
# File 'lib/axlsx/workbook/worksheet/sheet_pr.rb', line 62 def page_setup_pr @page_setup_pr ||= PageSetUpPr.new end |
#to_xml_string(str = '') ⇒ String
Serialize the object
51 52 53 54 55 56 57 58 |
# File 'lib/axlsx/workbook/worksheet/sheet_pr.rb', line 51 def to_xml_string(str = '') update_properties str << "<sheetPr #{serialized_attributes}>" tab_color.to_xml_string(str, 'tabColor') if tab_color outline_pr.to_xml_string(str) if @outline_pr page_setup_pr.to_xml_string(str) str << "</sheetPr>" end |