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


IEngineEditSketch.VertexDeleted Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Controls > ESRI ArcGIS Controls > Interfaces > IE > IEngineEditSketch Interface > IEngineEditSketch.VertexDeleted Method
ArcGIS Developer Help

IEngineEditSketch.VertexDeleted Method

Notifies listeners that a vertex has been deleted from the sketch.

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

point is a parameter of type IPoint*

Product Availability

Available with ArcGIS Engine.

Description

Call VertexDeleted if you are programmatically deleting a vertex from an edit sketch. The VertexDeleted method will programmatically fire the IEngineEditEvents::OnVertexDeleted event, thus ensuring that all listening clients are notified.

See Also

IEngineEditSketch Interface