Class: Uniword::Drawingml::FormatScheme
- Inherits:
-
Lutaml::Model::Serializable
- Object
- Lutaml::Model::Serializable
- Uniword::Drawingml::FormatScheme
- Defined in:
- lib/uniword/drawingml/format_scheme.rb
Overview
Represents format scheme in a DrawingML theme
Format schemes define fill, line, effect, and background styles.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ FormatScheme
constructor
A new instance of FormatScheme.
Constructor Details
#initialize(attributes = {}) ⇒ FormatScheme
Returns a new instance of FormatScheme.
132 133 134 135 136 137 138 |
# File 'lib/uniword/drawingml/format_scheme.rb', line 132 def initialize(attributes = {}) super @fill_style_lst ||= FillStyleList.new @ln_style_lst ||= LineStyleList.new @effect_style_lst ||= EffectStyleList.new @bg_fill_style_lst ||= BackgroundFillStyleList.new end |