Class: Uniword::Drawingml::FormatScheme

Inherits:
Lutaml::Model::Serializable
  • Object
show all
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

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