This document is archived and information here might be outdated.  Recommended version.


IDynamicGlyph.GetAnchor Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Display > ESRI.ArcGIS.Display > Interfaces > ID > IDynamicGlyph Interface > IDynamicGlyph.GetAnchor Method
ArcGIS Developer Help

IDynamicGlyph.GetAnchor Method

Indicates the origin of the glyph from the the bottom left.

[Visual Basic .NET]
Public Sub GetAnchor ( _
    ByRef xAnchor As Single&, _
    ByRef yAnchor As Single& _
)
[C#]
public void GetAnchor (
    ref Single& xAnchor,
    ref Single& yAnchor
);
[C++]
HRESULT GetAnchor(
  System.Single* xAnchor,
  System.Single* yAnchor
);
[C++]
Parameters
xAnchor [in, out]

xAnchor is a parameter of type single* yAnchor [in, out]
yAnchor is a parameter of type single*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The anchor is an offset value, relative to the glyph�s lower left corner, that defines the anchor point (hot point) of the glyph. For example, for a glyph that represents an arrow, use the offset from the lower left glyph to the arrow�s base point as the anchor of the glyph.

The X values grow towards the right, and the Y values grow towards the top.

See Also

IDynamicGlyph Interface