Sha256: b6ef305f774879a400deac39d06cda8758309d432c27e498a0719741c74e320b

Contents?: true

Size: 604 Bytes

Versions: 4

Compression:

Stored size: 604 Bytes

Contents

module OpenXml
  module DrawingML
    module Properties
      class EffectDag < OpenXml::Properties::ComplexProperty
        include HasChildren
        namespace :a
        tag :effectDag

        attribute :dag_name, displays_as: :name, expects: :string
        attribute :type, one_of: %i{ sib tree }

        # TODO: Perhaps enumerate all of the effects that can be contained by
        # this effects container? But since effects containers can contain
        # effects containers, maybe it's just more straightforward to shovel on
        # regular elements for this.

      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
openxml-drawingml-0.3.1 lib/openxml/drawingml/properties/effect_dag.rb
openxml-drawingml-0.3.0 lib/openxml/drawingml/properties/effect_dag.rb
openxml-drawingml-0.2.1 lib/openxml/drawingml/properties/effect_dag.rb
openxml-drawingml-0.2.0 lib/openxml/drawingml/properties/effect_dag.rb