ArcObjects Library Reference (Editor)  

IDimensionConstructor.CanFinish Property

Indicates if the dimension feature can be constructed given the number of points in the edit sketch.

[Visual Basic .NET]
Public Function get_CanFinish ( _
    ByVal sketchGeometry As IGeometry _
) As Boolean
[C#]
public bool get_CanFinish (
    IGeometry sketchGeometry
);

Product Availability

Available with ArcGIS Desktop.

Remarks

CanFinish determines if the specified dimension constructor's conditions have been met in order to successfully complete the construction.  CanFinish is called each time a point is added to the edit sketch. One of the primary conditions is the number of points in the edit sketch.  For example, the aligned dimension constructor requires exactly three points - once the edit sketch contains three points CanFinish returns True.  When points are added to the sketch CanFinish is called immediately following IDimensionConstructor::AddFeedbackPoint.

See Also

IDimensionConstructor Interface