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


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

IDisplayFeedback.MoveTo Method

Move to the new point.

[Visual Basic .NET]
Public Sub MoveTo ( _
    ByVal Point As IPoint _
)
[C#]
public void MoveTo (
    IPoint Point
);
[C++]
HRESULT MoveTo(
  IPoint* Point
);
[C++]
Parameters
Point [in]

Point is a parameter of type IPoint*

Product Availability

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

Description

MoveTo moves to the new location specified by the input. Usually, include this method in the MouseMove event.

See Also

IDisplayFeedback Interface