[Table of Contents] [docx version]

Error! No text of specified style in document.

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

ahLst5.1.11.1)

 

Child Elements

Subclause

pos (Shape Position Coordinate)

§5.1.11.17

 

Attributes

Description

gdRefAng (Angle Adjustment Guide)

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).

gdRefR (Radial Adjustment Guide)

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).

maxAng (Maximum Angle Adjustment)

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 maxAng and minAng will be equal.

 

The possible values for this attribute are defined by the ST_AdjAngle simple type (§5.1.12.1).

maxR (Maximum Radial Adjustment)

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 maxR and minR will be equal.

 

The possible values for this attribute are defined by the ST_AdjCoordinate simple type (§5.1.12.2).

minAng (Minimum Angle Adjustment)

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 maxAng and minAng will be equal.

 

The possible values for this attribute are defined by the ST_AdjAngle simple type (§5.1.12.1).

minR (Minimum Radial Adjustment)

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 maxR and minR will be equal.

 

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>