Class: Axlsx::Xf
- Inherits:
-
Object
- Object
- Axlsx::Xf
- Includes:
- OptionsParser, SerializedAttributes
- Defined in:
- lib/axlsx/stylesheet/xf.rb
Overview
The Xf class defines a formatting record for use in Styles. The recommended way to manage styles for your workbook is with Styles#add_style
Instance Attribute Summary collapse
-
#alignment ⇒ CellAlignment
The cell alignment for this style.
-
#applyAlignment ⇒ Boolean
Indicates if the alignment options should be applied.
-
#applyBorder ⇒ Boolean
indicates if the borderId should be applied.
-
#applyFill ⇒ Boolean
indicates if the fillId should be applied.
-
#applyFont ⇒ Boolean
indicates if the fontId should be applied.
-
#applyNumberFormat ⇒ Boolean
indicates if the numFmtId should be applied.
-
#applyProtection ⇒ Boolean
Indicates if the protection options should be applied.
-
#borderId ⇒ Integer
index (0 based) of the border to be used in this style.
-
#fillId ⇒ Integer
index (0 based) of the fill to be used in this style.
-
#fontId ⇒ Integer
index (0 based) of the font to be used in this style.
-
#numFmtId ⇒ Integer
id of the numFmt to apply to this style.
-
#pivotButton ⇒ Boolean
indicates if the cell has a pivot table drop down button.
-
#protection ⇒ CellProtection
The cell protection for this style.
-
#quotePrefix ⇒ Boolean
indecates if text should be prefixed by a single quote in the cell.
-
#xfId ⇒ Integer
index (0 based) of cellStylesXfs item to be used in this style.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Xf
constructor
Creates a new Xf object.
-
#to_xml_string(str = '') ⇒ String
Serializes the object.
Methods included from OptionsParser
Methods included from SerializedAttributes
included, #serialized_attributes, #serialized_element_attributes
Constructor Details
#initialize(options = {}) ⇒ Xf
Creates a new Xf object
26 27 28 |
# File 'lib/axlsx/stylesheet/xf.rb', line 26 def initialize(={}) end |
Instance Attribute Details
#alignment ⇒ CellAlignment
The cell alignment for this style
37 38 39 |
# File 'lib/axlsx/stylesheet/xf.rb', line 37 def alignment @alignment end |
#applyAlignment ⇒ Boolean
Indicates if the alignment options should be applied
90 91 92 |
# File 'lib/axlsx/stylesheet/xf.rb', line 90 def applyAlignment @applyAlignment end |
#applyBorder ⇒ Boolean
indicates if the borderId should be applied
86 87 88 |
# File 'lib/axlsx/stylesheet/xf.rb', line 86 def applyBorder @applyBorder end |
#applyFill ⇒ Boolean
indicates if the fillId should be applied
82 83 84 |
# File 'lib/axlsx/stylesheet/xf.rb', line 82 def applyFill @applyFill end |
#applyFont ⇒ Boolean
indicates if the fontId should be applied
78 79 80 |
# File 'lib/axlsx/stylesheet/xf.rb', line 78 def applyFont @applyFont end |
#applyNumberFormat ⇒ Boolean
indicates if the numFmtId should be applied
74 75 76 |
# File 'lib/axlsx/stylesheet/xf.rb', line 74 def applyNumberFormat @applyNumberFormat end |
#applyProtection ⇒ Boolean
Indicates if the protection options should be applied
94 95 96 |
# File 'lib/axlsx/stylesheet/xf.rb', line 94 def applyProtection @applyProtection end |
#borderId ⇒ Integer
index (0 based) of the border to be used in this style
58 59 60 |
# File 'lib/axlsx/stylesheet/xf.rb', line 58 def borderId @borderId end |
#fillId ⇒ Integer
index (0 based) of the fill to be used in this style
54 55 56 |
# File 'lib/axlsx/stylesheet/xf.rb', line 54 def fillId @fillId end |
#fontId ⇒ Integer
index (0 based) of the font to be used in this style
50 51 52 |
# File 'lib/axlsx/stylesheet/xf.rb', line 50 def fontId @fontId end |
#numFmtId ⇒ Integer
id of the numFmt to apply to this style
46 47 48 |
# File 'lib/axlsx/stylesheet/xf.rb', line 46 def numFmtId @numFmtId end |
#pivotButton ⇒ Boolean
indicates if the cell has a pivot table drop down button
70 71 72 |
# File 'lib/axlsx/stylesheet/xf.rb', line 70 def pivotButton @pivotButton end |
#protection ⇒ CellProtection
The cell protection for this style
42 43 44 |
# File 'lib/axlsx/stylesheet/xf.rb', line 42 def protection @protection end |
#quotePrefix ⇒ Boolean
indecates if text should be prefixed by a single quote in the cell
66 67 68 |
# File 'lib/axlsx/stylesheet/xf.rb', line 66 def quotePrefix @quotePrefix end |
#xfId ⇒ Integer
index (0 based) of cellStylesXfs item to be used in this style. Only applies to cellXfs items
62 63 64 |
# File 'lib/axlsx/stylesheet/xf.rb', line 62 def xfId @xfId end |
Instance Method Details
#to_xml_string(str = '') ⇒ String
Serializes the object
136 137 138 139 140 141 142 143 |
# File 'lib/axlsx/stylesheet/xf.rb', line 136 def to_xml_string(str = '') str << '<xf ' serialized_attributes str str << '>' alignment.to_xml_string(str) if self.alignment protection.to_xml_string(str) if self.protection str << '</xf>' end |