2.4.6.2.8 CT_DataGraphics_Page

Referenced by: CT_DataGraphics

The CT_DataGraphics_Page complex type specifies information used to update all the data graphics in a drawing page.

Child Elements:

Shape : An optional list of CT_DataGraphics_Shape elements. CT_DataGraphics_Shape elements are not present if the shapes of the drawing page are not associated with data graphics.

Attributes:

PageName :  An xsd:string ([XMLSCHEMA2] section 3.2.1) attribute that specifies the name of the drawing page.

ViewTransform :  An xsd:string ([XMLSCHEMA2] section 3.2.1) attribute that specifies a geometric transform used to convert the Cartesian coordinates of the graphic elements in the ShapeGraphic Part to the coordinate system of the view that displays the drawing page. It MUST have the following format:

 m11 m12 m21 m22 dx dy

m11, m12, m21, m22, dx, dy are float values that represent a 3-by-3 affine transformation matrix as specified in the following table. All values MUST be separated by single spaces.

Column 1

Column 2

Column 3

Row 1

m11

m12

0

Row 2

m12

m22

0

Row 3

dx

dy

1

The following W3C XML Schema ([XMLSCHEMA1] section 2.1) fragment specifies the contents of this complex type.

 <xsd:complexType name="CT_DataGraphics_Page">
   <xsd:sequence>
     <xsd:element name="Shape" minOccurs="0" maxOccurs="unbounded" type="CT_DataGraphics_Shape"/>
   </xsd:sequence>
   <xsd:attribute name="PageName" type="xsd:string"/>
   <xsd:attribute name="ViewTransform" type="xsd:string"/>
 </xsd:complexType>