OnDrawingGeometryChanged

This event occurs when a drawing object’s geometry (created by calling any of the IDrawing methods or DrawFeature) is changed, e.g., by adding a polyline point or label.

 

JavaScript

 

OnDrawingGeometryChanged(

       pGeometry

       bIntersect)

 

C#

 

void OnDrawingGeometryChanged (

       IGeometry pGeometry

       bool bintersect)

 

C++

 

HRESULT OnDrawingGeometryChanged (

       [in] IGeometry* pGeometry

       [in] BOOL bIntersect)

Parameters

pIGeometry

An IGeometry derived object, representing the geometric properties of the drawn object.

bIntersect

A Boolean that indicates whether the drawn geometry intersects itself.