http://www.yworks.com/xml/graphml
complexType Path.type

Super Types
{http://www.w3.org/2001/XMLSchema}anyType
|
+--{http://www.yworks.com/xml/graphml}Path.type (restriction)

Documentation
Attribute group that describes a two-dimensional path, consisting of a point list together with optional source and target locations.

The source resp. target location is specified by the sx and sy resp. tx and ty attributes.

Properties
This component is not nillable.

Model
<...
  reversedPathRendering = xs:boolean
  sx = xs:double
  sy = xs:double
  tx = xs:double
  ty = xs:double>
Point
</...>


Nested Element Summary
 Point
           Single control point for two dimensional paths.  

Attribute Summary
 xs:booleanreversedPathRendering
           true iff the path should be rendered in reverse order.  
 xs:doublesx
           The x coordinate of the source point.  
 xs:doublesy
           The y coordinate of the source point.  
 xs:doubletx
           The x coordinate of the target point.  
 xs:doublety
           The y coordinate of the target point.  

Attribute Detail

reversedPathRendering

true iff the path should be rendered in reverse order.

Type:
xs:boolean
Use:
optional
Form:
unqualified

sx

The x coordinate of the source point.

Type:
xs:double
Use:
optional
Form:
unqualified

sy

The y coordinate of the source point.

Type:
xs:double
Use:
optional
Form:
unqualified

tx

The x coordinate of the target point.

Type:
xs:double
Use:
optional
Form:
unqualified

ty

The y coordinate of the target point.

Type:
xs:double
Use:
optional
Form:
unqualified

Source
<xs:complexType name="Path.type">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="Point">
<xs:complexType>
<xs:attributeGroup ref="Location.group"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="reversedPathRendering" type="xs:boolean" use="optional">
</xs:attribute>
<xs:attribute name="sx" type="xs:double" use="optional">
</xs:attribute>
<xs:attribute name="sy" type="xs:double" use="optional">
</xs:attribute>
<xs:attribute name="tx" type="xs:double" use="optional">
</xs:attribute>
<xs:attribute name="ty" type="xs:double" use="optional">
</xs:attribute>
</xs:complexType>


© Copyright 2000-2009, yWorks GmbH. All rights reserved.