[Table of Contents] [docx version]

Error! No text of specified style in document.

moveTo (Move Path To)

This element specifies a set of new coordinates to move the shape cursor to. This element is only used for drawing a custom geometry. When this element is utilized the pt element is used to specify a new set of shape coordinates that the shape cursor should be moved to. This will not draw a line or curve to this new position from the old position but simply move the cursor to a new starting position. It is only when a path drawing element such as lnTo is used that a portion of the path will be drawn.

[Example: Consider the case where a user wishes to begin drawing a custom geometry not at the default starting coordinates of x=0 , y=0 but at coordinates further inset into the shape coordinate space. The following DrawingML would specify such a case.

<a:custGeom>
<a:pathLst>
<a:path w="2824222" h="590309">
<a:moveTo>
<a:pt x="0" y="428263"/>
</a:moveTo>

<a:lnTo>
<a:pt x="1620455" y="590309"/>
</a:lnTo>

<a:lnTo>
<a:pt x="2824222" y="173620"/>
</a:lnTo>

<a:lnTo>
<a:pt x="1562582" y="0"/>
</a:lnTo>

<a:close/>
</a:path>
</a:pathLst>
</a:custGeom>

Notice the moveTo element advances the y coordinates before any actual lines are drawn. end example]

Parent Elements

path5.1.11.15)

 

Child Elements

Subclause

pt (Shape Path Point)

§5.1.11.20

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

<complexType name="CT_Path2DMoveTo">

   <sequence>

   <element name="pt" type="CT_AdjPoint2D" minOccurs="1" maxOccurs="1"/>

   </sequence>

</complexType>