blob: d1c62c9ee88c2bc167199fbc02e8bdd5f5997ea8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# frozen_string_literal: true
module Axlsx
# Page setup properties of the worksheet
# This class name is not a typo, its spec.
class PageSetUpPr
include Axlsx::OptionsParser
include Axlsx::SerializedAttributes
# creates a new page setup properties object
# @param [Hash] options
# @option [Boolean] auto_page_breaks Flag indicating whether the sheet displays Automatic Page Breaks.
# @option [Boolean] fit_to_page Flag indicating whether the Fit to Page print option is enabled.
def initialize(options = {})
parse_options options
end
serializable_attributes :auto_page_breaks, :fit_to_page
attr_reader :auto_page_breaks
attr_reader :fit_to_page
# Flag indicating whether the Fit to Page print option is enabled.
# @param [Boolean] value
# @return [Boolean]
def fit_to_page=(value)
Axlsx.validate_boolean value
@fit_to_page = value
end
# Flag indicating whether the sheet displays Automatic Page Breaks.
# @param [Boolean] value
# @return [Boolean]
def auto_page_breaks=(value)
Axlsx.validate_boolean value
@auto_page_breaks = value
end
# serialize to xml
def to_xml_string(str = '')
str << ('<pageSetUpPr ' << serialized_attributes << '/>')
end
end
end
|