Shape

The complex type CT_Shape specifies a shape for a layout node. The shape complex type holds all of the information associated with the particular layout node and all of the adjustments or modifications that can be made to the shape. The rot attribute specifies a rotation on the shape. The blip attribute specifies an image that is used as a background fill for the shape and the @blipPhldr attribute specifies whether or not the shape shows up with an image placeholder. The @zOrderOff attribute specifies an offset to be used for the z-ordering of this shape, while the @lkTxEntry attribute prevents text editing within the shape. A shape is defined in the following manner:

<xsd:complexType name="CT_Shape">
  <xsd:sequence>
    <xsd:element name="adjLst" type="CT_AdjLst" minOccurs="0" 
      maxOccurs="1" />
  </xsd:sequence>
  <xsd:attribute name="rot" type="xsd:double" use="optional" default="0" />
  <xsd:attribute name="type" type="ST_LayoutShapeType" 
    use="optional" default="none" />
  <xsd:attribute ref="r:blip" use="optional" />
  <xsd:attribute name="zOrderOff" type="xsd:int" use="optional" 
    default="0" />
  <xsd:attribute name="hideGeom" type="xsd:boolean" use="optional" 
    default="false" />
  <xsd:attribute name="lkTxEntry" type="xsd:boolean" use="optional" 
    default="false" />
  <xsd:attribute name="blipPhldr" type="xsd:boolean" use="optional" 
    default="false" />
</xsd:complexType>