Pans to a new point.
[Visual Basic 6.0] Sub PanMoveTo(
ByVal mouseLocation As IPoint _
)
[Visual Basic .NET] Public Sub PanMoveTo ( _ ByVal mouseLocation As IPoint _ )
[C#] public void PanMoveTo ( IPoint mouseLocation );
[Java] public void panMoveTo ( IPoint mouseLocation ) throws IOException, AutomationException
[C++] HRESULT PanMoveTo( IPoint* mouseLocation );
PanMoveTo pans the display by calculating an offset distance between the start point supplied to PanStart and the destination point provided to this method. The recording cache is automatically redrawn each time PanMoveTo is called. Use the envelope PanStop returns to truly refresh the display.
The typical sequence for using the pan methods is as follows:
See TrackPan for an alternative panning approach.
IScreenDisplay Interface | IScreenDisplay.PanMoveTo Method | IScreenDisplay.PanStop Method | IScreenDisplay.PanStart Method | IScreenDisplay.TrackPan Method