<ahPolar>
(Polar Adjust Handle)
This element specifies a polar adjust handle for a custom shape. The position of this adjust handle will be specified by the corresponding pos child element. The allowed adjustment of this adjust handle are specified via it's min and max type attributes. Based on the adjustment of this adjust handle certain corresponding guides will be updated to contain these values.
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
Attributes |
Description |
---|---|
|
Specifies the name of the guide that will be updated with the adjustment angle from this adjust handle. The possible values for this attribute are defined by the ST_GeomGuideName simple type (§5.1.12.26). |
|
Specifies the name of the guide that will be updated with the adjustment radius from this adjust handle. The possible values for this attribute are defined by the ST_GeomGuideName simple type (§5.1.12.26). |
|
Specifies the maximum angle position that is allowed for this adjustment handle. If this attribute is omitted, then it will be assumed that this adjust handle cannot move angularly. That is the The possible values for this attribute are defined by the ST_AdjAngle simple type (§5.1.12.1). |
|
Specifies the maximum radial position that is allowed for this adjustment handle. If this attribute is omitted, then it will be assumed that this adjust handle cannot move radially. That is the The possible values for this attribute are defined by the ST_AdjCoordinate simple type (§5.1.12.2). |
|
Specifies the minimum angle position that is allowed for this adjustment handle. If this attribute is omitted, then it will be assumed that this adjust handle cannot move angularly. That is the The possible values for this attribute are defined by the ST_AdjAngle simple type (§5.1.12.1). |
|
Specifies the minimum radial position that is allowed for this adjustment handle. If this attribute is omitted, then it will be assumed that this adjust handle cannot move radially. That is the The possible values for this attribute are defined by the ST_AdjCoordinate simple type (§5.1.12.2). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_PolarAdjustHandle">
<sequence>
<element name="pos" type="CT_AdjPoint2D" minOccurs="1" maxOccurs="1"/>
</sequence>
<attribute name="gdRefR" type="ST_GeomGuideName" use="optional"/>
<attribute name="minR" type="ST_AdjCoordinate" use="optional"/>
<attribute name="maxR" type="ST_AdjCoordinate" use="optional"/>
<attribute name="gdRefAng" type="ST_GeomGuideName" use="optional"/>
<attribute name="minAng" type="ST_AdjAngle" use="optional"/>
<attribute name="maxAng" type="ST_AdjAngle" use="optional"/>
</complexType>