[Table of Contents] [docx version]

Error! No text of specified style in document.

grpSp (Group Shape)

This element specifies a group shape that represents many shapes grouped together. This shape is to be treated just as if it were a regular shape but instead of being described by a single geometry it is made up of all the shape geometries encompassed within it. Within a group shape each of the shapes that make up the group are specified just as they normally would. The idea behind grouping elements however is that a single transform can apply to many shapes at the same time.

[Example: Consider the following group shape.

<cdr:grpSp>

<cdr:nvGrpSpPr>

<cdr:cNvPr id="10" name="Group 9"/>

<cdr:cNvGrpSpPr/>

<cdr:nvPr/>

</cdr:nvGrpSpPr>

<cdr:grpSpPr>

<a:xfrm>

<a:off x="838200" y="990600"/>

<a:ext cx="2426208" cy="978408"/>

<a:chOff x="838200" y="990600"/>

<a:chExt cx="2426208" cy="978408"/>

</a:xfrm>

</cdr:grpSpPr>

<cdr:sp>

..

</cdr:sp>

<cdr:sp>

..

</cdr:sp>

<cdr:sp>

..

</cdr:sp>

</cdr:grpSp>

In the above example we see three shapes specified within a single group. These three shapes have their position and sizes specified just as they normally would within the shape tree. The generating application should apply the transformation after the bounding box for the group shape has been calculated. end example]

Parent Elements

absSizeAnchor5.8.2.1); grpSp5.8.2.13); relSizeAnchor5.8.2.21)

 

Child Elements

Subclause

cxnSp (Connection Shape)

§5.8.2.9

graphicFrame (Graphic Frame)

§5.8.2.12

grpSp (Group Shape)

§5.8.2.13

grpSpPr (Group Shape Properties)

§5.8.2.14

nvGrpSpPr (Non-Visual Group Shape Properties)

§5.8.2.17

pic (Picture)

§5.8.2.20

sp (Shape)

§5.8.2.22

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_GroupShape">

   <sequence>

   <element name="nvGrpSpPr" type="CT_GroupShapeNonVisual" minOccurs="1" maxOccurs="1"/>

   <element name="grpSpPr" type="a:CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/>

   <choice minOccurs="0" maxOccurs="unbounded">

   <element name="sp" type="CT_Shape"/>

   <element name="grpSp" type="CT_GroupShape"/>

   <element name="graphicFrame" type="CT_GraphicFrame"/>

   <element name="cxnSp" type="CT_Connector"/>

   <element name="pic" type="CT_Picture"/>

   </choice>

   </sequence>

</complexType>