openxml/openxml-pptx

View on GitHub
lib/openxml/pptx/properties/shape_group.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Pptx
    module Properties
      class ShapeGroup < SimplePropertyContainerProperty
        namespace :p
        tag :grpSp

        property :non_visual_group_shape_properties, required: true
        property :group_shape_properties, required: true

        property :shapes, as: :shapes_container

        property :extension_list

      end
    end
  end
end