[Table of Contents] [docx version]

Error! No text of specified style in document.

xfrm (2D Transform for Grouped Objects)

This element is nearly identical to the representation of 2-D transforms for ordinary shapes (§5.1.9.6). The only addition is a member to represent the Child offset and the Child extents.

Parent Elements

grpSpPr5.8.2.14); grpSpPr4.4.1.20); grpSpPr5.1.2.1.22); grpSpPr5.6.2.17)

 

Child Elements

Subclause

chExt (Child Extents)

§5.1.9.1

chOff (Child Offset)

§5.1.9.2

ext (Extents)

§5.1.9.3

off (Offset)

§5.1.9.4

 

Attributes

Description

flipH (Horizontal Flip)

Horizontal flip. When true, this attribute defines that the group will be flipped horizontally about the center of its bounding box.

 

[Example -- The following illustrates the effect of a horizontal flip.

 

 

 

end example]

 

The possible values for this attribute are defined by the XML Schema boolean datatype.

flipV (Vertical Flip)

Vertical flip. When true, this attribute defines that the group will be flipped vertically about the center of its bounding box.

[Example -- The following illustrates the effect of a vertical flip.

 

end example]

 

The possible values for this attribute are defined by the XML Schema boolean datatype.

rot (Rotation)

Rotation. Specifies the clockwise rotation of a group in 1/64000 of a degree.

 

The possible values for this attribute are defined by the ST_Angle simple type (§5.1.12.3).

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

<complexType name="CT_GroupTransform2D">

   <sequence>

   <element name="off" type="CT_Point2D" minOccurs="0" maxOccurs="1"/>

   <element name="ext" type="CT_PositiveSize2D" minOccurs="0" maxOccurs="1"/>

   <element name="chOff" type="CT_Point2D" minOccurs="0" maxOccurs="1"/>

   <element name="chExt" type="CT_PositiveSize2D" minOccurs="0" maxOccurs="1"/>

   </sequence>

   <attribute name="rot" type="ST_Angle" use="optional" default="0"/>

   <attribute name="flipH" type="xsd:boolean" use="optional" default="false"/>

   <attribute name="flipV" type="xsd:boolean" use="optional" default="false"/>

</complexType>