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


IEngineEditSketch.VertexAdded 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.VertexAdded Method
ArcGIS Developer Help

IEngineEditSketch.VertexAdded Method

Notifies listeners that a vertex has been added to the sketch.

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

point is a parameter of type IPoint*

Product Availability

Available with ArcGIS Engine.

Description

Call VertexAdded if you are programmatically adding a vertex to an edit sketch. The VertexAdded method will programmatically fire the IEngineEditEvents::OnVertexAdded event, thus ensuring that all listening clients are notified.

See Also

IEngineEditSketch Interface