openxml/openxml-pptx

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

Summary

Maintainability
A
20 mins
Test Coverage
module OpenXml
  module Pptx
    module Properties
      class NonVisualGroupShapeDrawingProperties < SimplePropertyContainerProperty
        include OpenXml::RenderWhenEmpty
        namespace :p
        tag :cNvGrpSpPr

        property :group_shape_locks, klass: OpenXml::DrawingML::Properties::GroupShapeLocks
        property :extension_list, klass: OpenXml::DrawingML::Properties::ExtensionList

      end
    end
  end
end