<xsd:complexType name="CT_Path2D">
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="close" type="CT_Path2DClose" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Close Shape Path</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="moveTo" type="CT_Path2DMoveTo" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Move Path To</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="lnTo" type="CT_Path2DLineTo" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Draw Line To</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="arcTo" type="CT_Path2DArcTo" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Draw Arc To</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="quadBezTo" type="CT_Path2DQuadBezierTo" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Draw Quadratic Bezier Curve To</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="cubicBezTo" type="CT_Path2DCubicBezierTo" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Draw Cubic Bezier Curve To</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
<xsd:attribute name="w" type="ST_PositiveCoordinate" use="optional" default="0">
<xsd:annotation>
<xsd:documentation>Path Width</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="h" type="ST_PositiveCoordinate" use="optional" default="0">
<xsd:annotation>
<xsd:documentation>Path Height</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="fill" type="ST_PathFillMode" use="optional" default="norm">
<xsd:annotation>
<xsd:documentation>Path Fill</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="stroke" type="xsd:boolean" use="optional" default="true">
<xsd:annotation>
<xsd:documentation>Path Stroke</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="extrusionOk" type="xsd:boolean" use="optional" default="true">
<xsd:annotation>
<xsd:documentation>3D Extrusion Allowed</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
|