Class: Uniword::Drawingml::ThemeElements

Inherits:
Lutaml::Model::Serializable
  • Object
show all
Defined in:
lib/uniword/drawingml/theme.rb

Overview

Container for theme elements (color scheme, font scheme, format scheme) XML Namespace: a: (DrawingML)

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ThemeElements

Returns a new instance of ThemeElements.



27
28
29
30
31
32
# File 'lib/uniword/drawingml/theme.rb', line 27

def initialize(attributes = {})
  super
  @clr_scheme ||= ColorScheme.new
  @font_scheme ||= FontScheme.new
  @fmt_scheme ||= FormatScheme.new
end