Sha256: 3824c95dd635f8c52623f26abf0823c3a8fdcc05b007a90ca0f5716ff457bfdf
Contents?: true
Size: 836 Bytes
Versions: 2
Compression:
Stored size: 836 Bytes
Contents
module Axlsx # the SheetCalcPr object for the worksheet # This object contains calculation properties for the worksheet. class SheetCalcPr include Axlsx::OptionsParser include Axlsx::SerializedAttributes include Axlsx::Accessors # creates a new SheetCalcPr # @param [Hash] options Options for this object # @option [Boolean] full_calc_on_load @see full_calc_on_load def initialize(options = {}) @full_calc_on_load = true parse_options options end boolean_attr_accessor :full_calc_on_load serializable_attributes :full_calc_on_load # Serialize the object # @param [String] str the string to append this objects serialized # content to. # @return [String] def to_xml_string(str = '') str << "<sheetCalcPr #{serialized_attributes}/>" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
caxlsx-3.4.1 | lib/axlsx/workbook/worksheet/sheet_calc_pr.rb |
caxlsx-3.4.0 | lib/axlsx/workbook/worksheet/sheet_calc_pr.rb |