<ahXY> (XY Adjust Handle)

This element specifies an XY-based 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

<ahLst>5.1.11.1)

Child Elements

Subclause

<pos> (Shape Position Coordinate)

§5.1.11.17

Attributes

Description

<gdRefX> (Horizontal Adjustment Guide)

Specifies the name of the guide that will be updated with the adjustment x position from this adjust handle.

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

<gdRefY> (Vertical Adjustment Guide)

Specifies the name of the guide that will be updated with the adjustment y position from this adjust handle.

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

<maxX> (Maximum Horizontal Adjustment)

Specifies the maximum horizontal position that is allowed for this adjustment handle. If this attribute is omitted, then it will be assumed that this adjust handle cannot move in the x direction. That is the <maxX> and <minX> will be equal.

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

<maxY> (Maximum Vertical Adjustment)

Specifies the maximum vertical position that is allowed for this adjustment handle. If this attribute is omitted, then it will be assumed that this adjust handle cannot move in the y direction. That is the <maxY> and <minY> will be equal.

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

<minX> (Minimum Horizontal Adjustment)

Specifies the minimum horizontal position that is allowed for this adjustment handle. If this attribute is omitted, then it will be assumed that this adjust handle cannot move in the x direction. That is the <maxX> and <minX> will be equal.

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

<minY> (Minimum Vertical Adjustment)

Specifies the minimum vertical position that is allowed for this adjustment handle. If this attribute is omitted, then it will be assumed that this adjust handle cannot move in the y direction. That is the <maxY> and <minY> 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_XYAdjustHandle">
	<sequence>
	<element name="pos" type="CT_AdjPoint2D" minOccurs="1" maxOccurs="1"/>
	</sequence>
	<attribute name="gdRefX" type="ST_GeomGuideName" use="optional"/>
	<attribute name="minX" type="ST_AdjCoordinate" use="optional"/>
	<attribute name="maxX" type="ST_AdjCoordinate" use="optional"/>
	<attribute name="gdRefY" type="ST_GeomGuideName" use="optional"/>
	<attribute name="minY" type="ST_AdjCoordinate" use="optional"/>
	<attribute name="maxY" type="ST_AdjCoordinate" use="optional"/>
</complexType>