Class: Axlsx::CellStyle
- Inherits:
-
Object
- Object
- Axlsx::CellStyle
- Defined in:
- lib/axlsx/stylesheet/cell_style.rb
Overview
Using Styles#add_style is the recommended way to manage cell styling.
CellStyle defines named styles that reference defined formatting records and can be used in your worksheet.
Instance Attribute Summary (collapse)
-
- (Integer) builtinId
The buildinId to use when this named style is applied.
-
- (Boolean) customBuiltin
Indicates that the build in style reference has been customized.
-
- (Boolean) hidden
Determines if this named style should show in the list of styles when using excel.
-
- (Integer) iLevel
Determines if this formatting is for an outline style, and what level of the outline it is to be applied to.
-
- (String) name
The name of this cell style.
-
- (Integer) xfId
The formatting record id this named style utilizes.
Instance Method Summary (collapse)
-
- (CellStyle) initialize(options = {})
constructor
Creats a new CellStyle object.
-
- (String) to_xml(xml)
Serializes the cell style.
Constructor Details
- (CellStyle) initialize(options = {})
Creats a new CellStyle object
39 40 41 42 43 |
# File 'lib/axlsx/stylesheet/cell_style.rb', line 39 def initialize(={}) .each do |o| self.send("#{o[0]}=", o[1]) if self.respond_to? o[0] end end |
Instance Attribute Details
- (Integer) builtinId
The buildinId to use when this named style is applied
18 19 20 |
# File 'lib/axlsx/stylesheet/cell_style.rb', line 18 def builtinId @builtinId end |
- (Boolean) customBuiltin
Indicates that the build in style reference has been customized.
30 31 32 |
# File 'lib/axlsx/stylesheet/cell_style.rb', line 30 def customBuiltin @customBuiltin end |
Determines if this named style should show in the list of styles when using excel
26 27 28 |
# File 'lib/axlsx/stylesheet/cell_style.rb', line 26 def hidden @hidden end |
- (Integer) iLevel
Determines if this formatting is for an outline style, and what level of the outline it is to be applied to.
22 23 24 |
# File 'lib/axlsx/stylesheet/cell_style.rb', line 22 def iLevel @iLevel end |
- (String) name
The name of this cell style
8 9 10 |
# File 'lib/axlsx/stylesheet/cell_style.rb', line 8 def name @name end |
- (Integer) xfId
The formatting record id this named style utilizes
13 14 15 |
# File 'lib/axlsx/stylesheet/cell_style.rb', line 13 def xfId @xfId end |
Instance Method Details
- (String) to_xml(xml)
Serializes the cell style
55 56 57 |
# File 'lib/axlsx/stylesheet/cell_style.rb', line 55 def to_xml(xml) xml.cellStyle(self.instance_values) end |