Class: Axlsx::Workbook
- Inherits:
-
Object
- Object
- Axlsx::Workbook
- Defined in:
- lib/axlsx/workbook/workbook.rb
Overview
The Workbook class is an xlsx workbook that manages worksheets, charts, drawings and styles. The following parts of the Office Open XML spreadsheet specification are not implimented in this version.
bookViews calcPr customWorkbookViews definedNames externalReferences extLst fileRecoveryPr fileSharing fileVersion functionGroups oleSize pivotCaches smartTagPr smartTagTypes webPublishing webPublishObjects workbookProtection workbookPr*
*workbookPr is only supported to the extend of date1904
Constant Summary collapse
- BOLD_FONT_MULTIPLIER =
1.5
- FONT_SCALE_DIVISOR =
10.0
- @@date1904 =
Indicates if the epoc date for serialization should be 1904. If false, 1900 is used.
false
Instance Attribute Summary collapse
-
#bold_font_multiplier ⇒ Float
Font size of bold fonts is multiplied with this Used for automatic calculation of cell widths with bold text.
-
#charts ⇒ SimpleTypedList
readonly
A collection of charts associated with this workbook.
-
#drawings ⇒ SimpleTypedList
readonly
A collection of drawings associated with this workbook.
-
#escape_formulas ⇒ Boolean
Whether to treat values starting with an equals sign as formulas or as literal strings.
-
#font_scale_divisor ⇒ Float
Font scale is calculated with this value (font_size / font_scale_divisor) Used for automatic calculation of cell widths.
-
#images ⇒ SimpleTypedList
readonly
A collection of images associated with this workbook.
-
#is_reversed ⇒ Boolean
If true reverse the order in which the workbook is serialized.
-
#pivot_tables ⇒ SimpleTypedList
readonly
A collection of pivot tables associated with this workbook.
-
#styles_applied ⇒ Object
Are the styles added with workbook.add_styles applied yet.
-
#tables ⇒ SimpleTypedList
readonly
A collection of tables associated with this workbook.
-
#use_shared_strings ⇒ Boolean
When true, the Package will be generated with a shared string table.
-
#worksheets ⇒ SimpleTypedList
readonly
A collection of worksheets associated with this workbook.
Class Method Summary collapse
-
.date1904 ⇒ Boolean
retrieves the date1904 attribute.
-
.date1904=(v) ⇒ Boolean
Sets the date1904 attribute to the provided boolean.
Instance Method Summary collapse
-
#[](cell_def) ⇒ Cell, Array
returns a range of cells in a worksheet retrieve the cells from.
-
#add_defined_name(formula, options) ⇒ DefinedName
Adds a defined name to this workbook.
-
#add_view(options = {}) ⇒ Object
Adds a new WorkbookView.
-
#add_worksheet(options = {}) {|worksheet| ... } ⇒ Worksheet
Adds a worksheet to this workbook.
-
#apply_styles ⇒ Boolean
A helper to apply styles that were added using
worksheet.add_style
. -
#comments ⇒ Comments
A collection of comments associated with this workbook.
-
#date1904 ⇒ Boolean
Instance level access to the class variable 1904.
-
#date1904=(v) ⇒ Object
see @date1904.
-
#defined_names ⇒ DefinedNames
A collection of defined names for this workbook.
-
#initialize(options = {}) {|_self| ... } ⇒ Workbook
constructor
Creates a new Workbook.
-
#insert_worksheet(index = 0, options = {}) {|worksheet| ... } ⇒ Worksheet
inserts a worksheet into this workbook at the position specified.
-
#relationships ⇒ Relationships
The workbook relationships.
-
#shared_strings ⇒ SharedStringTable
generates a shared string object against all cells in all worksheets.
-
#sheet_by_name(name) ⇒ Worksheet
A quick helper to retrive a worksheet by name.
-
#styled_cells ⇒ Object
An array that holds all cells with styles.
-
#styles {|@styles| ... } ⇒ Styles
The styles associated with this workbook.
-
#to_xml_string(str = '') ⇒ String
Serialize the workbook.
-
#use_autowidth ⇒ Boolean
Indicates if the workbook should use autowidths or not.
-
#use_autowidth=(v = true) ⇒ Object
see @use_autowidth.
-
#views ⇒ Object
A collection of views for this workbook.
-
#xml_space ⇒ Object
The xml:space attribute for the worksheet.
-
#xml_space=(space) ⇒ Object
Sets the xml:space attribute for the worksheet.
Constructor Details
#initialize(options = {}) {|_self| ... } ⇒ Workbook
Creates a new Workbook. The recommended way to work with workbooks is via Package#workbook.
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/axlsx/workbook/workbook.rb', line 229 def initialize( = {}) @styles = Styles.new @worksheets = SimpleTypedList.new Worksheet @drawings = SimpleTypedList.new Drawing @charts = SimpleTypedList.new Chart @images = SimpleTypedList.new Pic # Are these even used????? Check package serialization parts @tables = SimpleTypedList.new Table @pivot_tables = SimpleTypedList.new PivotTable @comments = SimpleTypedList.new Comments @use_autowidth = true @bold_font_multiplier = BOLD_FONT_MULTIPLIER @font_scale_divisor = FONT_SCALE_DIVISOR self.escape_formulas = [:escape_formulas].nil? ? Axlsx.escape_formulas : [:escape_formulas] self.date1904 = ![:date1904].nil? && [:date1904] yield self if block_given? end |
Instance Attribute Details
#bold_font_multiplier ⇒ Float
Font size of bold fonts is multiplied with this Used for automatic calculation of cell widths with bold text
289 290 291 |
# File 'lib/axlsx/workbook/workbook.rb', line 289 def bold_font_multiplier @bold_font_multiplier end |
#charts ⇒ SimpleTypedList (readonly)
The recommended way to manage charts is Worksheet#add_chart
A collection of charts associated with this workbook
121 122 123 |
# File 'lib/axlsx/workbook/workbook.rb', line 121 def charts @charts end |
#drawings ⇒ SimpleTypedList (readonly)
The recommended way to manage drawings is Worksheet#add_chart
A collection of drawings associated with this workbook
135 136 137 |
# File 'lib/axlsx/workbook/workbook.rb', line 135 def drawings @drawings end |
#escape_formulas ⇒ Boolean
Whether to treat values starting with an equals sign as formulas or as literal strings. Allowing user-generated data to be interpreted as formulas is a security risk. See https://www.owasp.org/index.php/CSV_Injection for details.
267 268 269 |
# File 'lib/axlsx/workbook/workbook.rb', line 267 def escape_formulas @escape_formulas end |
#font_scale_divisor ⇒ Float
Font scale is calculated with this value (font_size / font_scale_divisor) Used for automatic calculation of cell widths
299 300 301 |
# File 'lib/axlsx/workbook/workbook.rb', line 299 def font_scale_divisor @font_scale_divisor end |
#images ⇒ SimpleTypedList (readonly)
The recommended way to manage images is Worksheet#add_image
A collection of images associated with this workbook
128 129 130 |
# File 'lib/axlsx/workbook/workbook.rb', line 128 def images @images end |
#is_reversed ⇒ Boolean
If true reverse the order in which the workbook is serialized
102 103 104 |
# File 'lib/axlsx/workbook/workbook.rb', line 102 def is_reversed @is_reversed end |
#pivot_tables ⇒ SimpleTypedList (readonly)
The recommended way to manage drawings is Worksheet#add_table
A collection of pivot tables associated with this workbook
151 152 153 |
# File 'lib/axlsx/workbook/workbook.rb', line 151 def pivot_tables @pivot_tables end |
#styles_applied ⇒ Object
Are the styles added with workbook.add_styles applied yet
193 194 195 |
# File 'lib/axlsx/workbook/workbook.rb', line 193 def styles_applied @styles_applied end |
#tables ⇒ SimpleTypedList (readonly)
The recommended way to manage drawings is Worksheet#add_table
A collection of tables associated with this workbook
144 145 146 |
# File 'lib/axlsx/workbook/workbook.rb', line 144 def tables @tables end |
#use_shared_strings ⇒ Boolean
When true, the Package will be generated with a shared string table. This may be required by some OOXML processors that do not adhere to the ECMA specification that dictates string may be inline in the sheet. Using this option will increase the time required to serialize the document as every string in every cell must be analzed and referenced.
92 93 94 |
# File 'lib/axlsx/workbook/workbook.rb', line 92 def use_shared_strings @use_shared_strings end |
#worksheets ⇒ SimpleTypedList (readonly)
The recommended way to manage worksheets is add_worksheet
A collection of worksheets associated with this workbook.
114 115 116 |
# File 'lib/axlsx/workbook/workbook.rb', line 114 def worksheets @worksheets end |
Class Method Details
.date1904 ⇒ Boolean
retrieves the date1904 attribute
261 |
# File 'lib/axlsx/workbook/workbook.rb', line 261 def self.date1904() @@date1904; end |
.date1904=(v) ⇒ Boolean
Sets the date1904 attribute to the provided boolean
257 |
# File 'lib/axlsx/workbook/workbook.rb', line 257 def self.date1904=(v) Axlsx::validate_boolean v; @@date1904 = v; end |
Instance Method Details
#[](cell_def) ⇒ Cell, Array
returns a range of cells in a worksheet retrieve the cells from. e.g. range('Sheet1!A1:B2') will return an array of four cells [A1, A2, B1, B2] while range('Sheet1!A1') will return a single Cell.
395 396 397 398 399 400 401 |
# File 'lib/axlsx/workbook/workbook.rb', line 395 def [](cell_def) sheet_name = cell_def.split('!')[0] if cell_def.match('!') worksheet = self.worksheets.select { |s| s.name == sheet_name }.first raise ArgumentError, 'Unknown Sheet' unless sheet_name && worksheet.is_a?(Worksheet) worksheet[cell_def.gsub(/.+!/, "")] end |
#add_defined_name(formula, options) ⇒ DefinedName
Adds a defined name to this workbook
346 347 348 |
# File 'lib/axlsx/workbook/workbook.rb', line 346 def add_defined_name(formula, ) defined_names << DefinedName.new(formula, ) end |
#add_view(options = {}) ⇒ Object
Adds a new WorkbookView
338 339 340 |
# File 'lib/axlsx/workbook/workbook.rb', line 338 def add_view( = {}) views << WorkbookView.new() end |
#add_worksheet(options = {}) {|worksheet| ... } ⇒ Worksheet
Adds a worksheet to this workbook
328 329 330 331 332 |
# File 'lib/axlsx/workbook/workbook.rb', line 328 def add_worksheet( = {}) worksheet = Worksheet.new(self, ) yield worksheet if block_given? worksheet end |
#apply_styles ⇒ Boolean
A helper to apply styles that were added using worksheet.add_style
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/axlsx/workbook/workbook.rb', line 197 def apply_styles return false if !styled_cells styled_cells.each do |cell| current_style = styles.style_index[cell.style] if current_style new_style = Axlsx.hash_deep_merge(current_style, cell.raw_style) else new_style = cell.raw_style end cell.style = styles.add_style(new_style) end self.styles_applied = true end |
#comments ⇒ Comments
The recommended way to manage comments is WOrksheet#add_comment
A collection of comments associated with this workbook
171 172 173 |
# File 'lib/axlsx/workbook/workbook.rb', line 171 def comments worksheets.map { |sheet| sheet.comments }.compact end |
#date1904 ⇒ Boolean
Instance level access to the class variable 1904
250 |
# File 'lib/axlsx/workbook/workbook.rb', line 250 def date1904() @@date1904; end |
#date1904=(v) ⇒ Object
see @date1904
253 |
# File 'lib/axlsx/workbook/workbook.rb', line 253 def date1904=(v) Axlsx::validate_boolean v; @@date1904 = v; end |
#defined_names ⇒ DefinedNames
The recommended way to manage defined names is Workbook#add_defined_name
A collection of defined names for this workbook
162 163 164 |
# File 'lib/axlsx/workbook/workbook.rb', line 162 def defined_names @defined_names ||= DefinedNames.new end |
#insert_worksheet(index = 0, options = {}) {|worksheet| ... } ⇒ Worksheet
inserts a worksheet into this workbook at the position specified. It the index specified is out of range, the worksheet will be added to the end of the worksheets collection
314 315 316 317 318 319 320 |
# File 'lib/axlsx/workbook/workbook.rb', line 314 def insert_worksheet(index = 0, = {}) worksheet = Worksheet.new(self, ) @worksheets.delete_at(@worksheets.size - 1) @worksheets.insert(index, worksheet) yield worksheet if block_given? worksheet end |
#relationships ⇒ Relationships
The workbook relationships. This is managed automatically by the workbook
352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/axlsx/workbook/workbook.rb', line 352 def relationships r = Relationships.new @worksheets.each do |sheet| r << Relationship.new(sheet, WORKSHEET_R, WORKSHEET_PN % (r.size + 1)) end pivot_tables.each_with_index do |pivot_table, index| r << Relationship.new(pivot_table.cache_definition, PIVOT_TABLE_CACHE_DEFINITION_R, PIVOT_TABLE_CACHE_DEFINITION_PN % (index + 1)) end r << Relationship.new(self, STYLES_R, STYLES_PN) if use_shared_strings r << Relationship.new(self, SHARED_STRINGS_R, SHARED_STRINGS_PN) end r end |
#shared_strings ⇒ SharedStringTable
generates a shared string object against all cells in all worksheets.
369 370 371 |
# File 'lib/axlsx/workbook/workbook.rb', line 369 def shared_strings SharedStringsTable.new(worksheets.collect { |ws| ws.cells }, xml_space) end |
#sheet_by_name(name) ⇒ Worksheet
A quick helper to retrive a worksheet by name
221 222 223 224 |
# File 'lib/axlsx/workbook/workbook.rb', line 221 def sheet_by_name(name) index = @worksheets.index { |sheet| sheet.name == name } @worksheets[index] if index end |
#styled_cells ⇒ Object
An array that holds all cells with styles
187 188 189 |
# File 'lib/axlsx/workbook/workbook.rb', line 187 def styled_cells @styled_cells ||= Set.new end |
#styles {|@styles| ... } ⇒ Styles
The recommended way to manage styles is Styles#add_style
The styles associated with this workbook
180 181 182 183 |
# File 'lib/axlsx/workbook/workbook.rb', line 180 def styles yield @styles if block_given? @styles end |
#to_xml_string(str = '') ⇒ String
Serialize the workbook
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
# File 'lib/axlsx/workbook/workbook.rb', line 406 def to_xml_string(str = '') add_worksheet(name: 'Sheet1') unless worksheets.size > 0 str << '<?xml version="1.0" encoding="UTF-8"?>' str << ('<workbook xmlns="' << XML_NS << '" xmlns:r="' << XML_NS_R << '">') str << ('<workbookPr date1904="' << @@date1904.to_s << '"/>') views.to_xml_string(str) str << '<sheets>' if is_reversed worksheets.reverse_each { |sheet| sheet.to_sheet_node_xml_string(str) } else worksheets.each { |sheet| sheet.to_sheet_node_xml_string(str) } end str << '</sheets>' defined_names.to_xml_string(str) unless pivot_tables.empty? str << '<pivotCaches>' pivot_tables.each do |pivot_table| str << ('<pivotCache cacheId="' << pivot_table.cache_definition.cache_id.to_s << '" r:id="' << pivot_table.cache_definition.rId << '"/>') end str << '</pivotCaches>' end str << '</workbook>' end |
#use_autowidth ⇒ Boolean
This gem no longer depends on RMagick for autowidth calculation. Thus the performance benefits of turning this off are marginal unless you are creating a very large sheet.
Indicates if the workbook should use autowidths or not.
281 |
# File 'lib/axlsx/workbook/workbook.rb', line 281 def use_autowidth() @use_autowidth; end |
#use_autowidth=(v = true) ⇒ Object
see @use_autowidth
284 |
# File 'lib/axlsx/workbook/workbook.rb', line 284 def use_autowidth=(v = true) Axlsx::validate_boolean v; @use_autowidth = v; end |
#views ⇒ Object
A collection of views for this workbook
154 155 156 |
# File 'lib/axlsx/workbook/workbook.rb', line 154 def views @views ||= WorkbookViews.new end |
#xml_space ⇒ Object
The xml:space attribute for the worksheet. This determines how whitespace is handled withing the document. The most relevant part being whitespace in the cell text. allowed values are :preserve and :default. Axlsx uses :preserve unless you explicily set this to :default.
379 380 381 |
# File 'lib/axlsx/workbook/workbook.rb', line 379 def xml_space @xml_space ||= :preserve end |
#xml_space=(space) ⇒ Object
Sets the xml:space attribute for the worksheet
386 387 388 389 |
# File 'lib/axlsx/workbook/workbook.rb', line 386 def xml_space=(space) Axlsx::RestrictionValidator.validate(:xml_space, [:preserve, :default], space) @xml_space = space end |