OnAnalysisDistancePointAdded

This event occurs when a distance analysis point is added. This event only relates to measurements performed using the Aerial Distance tool (from the UI or ICommand80.Execute).

 

JavaScript

 

OnAnalysisDistancePointAdded(

       pRuler,

       AerialDist

       HorizontalDist

       Slope

       ElevationDifference)

 

C#

 

void OnAnalysisDistancePointAdded (

       IGeometry pRuler,

       double AerialDist,

       double HorizontalDist,

       double Slope,

       double ElevationDifference)

 

C++

 

HRESULT OnAnalysisDistancePointAdded (

       [in] IGeometry pRuler,

       [in] double AerialDist,

       [in] double HorizontalDist,

       [in] double Slope,

       [in] double ElevationDifference)

Parameters

pRuler

An IGeometry representing the geometric properties of the defined path.

AerialDist

Aerial distance between the points.

HorizontalDist

Horizontal distance between the points.

Slope

Slope of the line between the first and last points.

ElevationDifference

Difference in elevation between the first and last points.