ArcObjects Library Reference (Controls)  

IEngineEditEvents.OnVertexDeleted Event

Fires when a vertex is deleted from the edit sketch.

[Visual Basic 6.0]
Event OnVertexDeleted(
    ByVal point As IPoint _
)
[Visual Basic .NET]
Public Event OnVertexDeleted As OnVertexDeletedEventHandler
[C#]
public event OnVertexDeletedEventHandler OnVertexDeleted
[C++]
HRESULT OnVertexDeleted(
  IPoint* point
);
[C++]

Parameters

point [in]

  point is a parameter of type IPoint

Product Availability

Available with ArcGIS Engine.

Description

The OnVertexDeleted event is fired whenever a vertex is deleted from an edit sketch. If the edit sketch vertex is deleted programmatically call IEngineEditSketch::VertexDeleted to ensure that this event is fired.

See Also

IEngineEditEvents Interface