blob: f25ef4fad45a8672aaa44f8228dd2a697067d0ba (
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
|
module Axlsx
# The OutlinePr class manages serialization of a worksheet's outlinePr element, which provides various
# options to control outlining.
class OutlinePr
include Axlsx::OptionsParser
include Axlsx::Accessors
include Axlsx::SerializedAttributes
serializable_attributes :summary_below,
:summary_right,
:apply_styles
# These attributes are all boolean so I'm doing a bit of a hand
# waving magic show to set up the attriubte accessors
boolean_attr_accessor :summary_below,
:summary_right,
:apply_styles
# Creates a new OutlinePr object
# @param [Hash] options used to create the outline_pr
def initialize(options = {})
parse_options options
end
# Serialize the object
# @param [String] str serialized output will be appended to this object if provided.
# @return [String]
def to_xml_string(str = '')
str << "<outlinePr #{serialized_attributes} />"
end
end
end
|