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


IEngineEditEvents.OnVertexMoved Event (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Controls > ESRI ArcGIS Controls > Interfaces > IE > IEngineEditEvents Interface > IEngineEditEvents.OnVertexMoved Event
ArcGIS Developer Help

IEngineEditEvents.OnVertexMoved Event

Fires when a vertex is moved in the edit sketch.

[Visual Basic .NET]
Public Event OnVertexMoved As OnVertexMovedEventHandler
[C#]
public event OnVertexMovedEventHandler OnVertexMoved
[C++]
HRESULT OnVertexMoved(
  IPoint* point
);
[C++]
Parameters
point [in]

point is a parameter of type IPoint*

Product Availability

Available with ArcGIS Engine.

Description

The OnVertexMoved event is fired whenever the location of a vertex in the edit sketch is modified. If the edit sketch vertex is modified programmatically call IEngineEditSketch::VertexMoved to ensure that this event is fired.

See Also

IEngineEditEvents Interface