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


ISegmentCollection.HasNonLinearSegments Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IS > ISegmentCollection Interface > ISegmentCollection.HasNonLinearSegments Method
ArcGIS Developer Help

ISegmentCollection.HasNonLinearSegments Method

Indicates if this segment collection contains segments other than lines.

[Visual Basic .NET]
Public Sub HasNonLinearSegments ( _
    ByRef nonLinearSegments As Boolean _
)
[C#]
public void HasNonLinearSegments (
    ref bool nonLinearSegments
);
[C++]
HRESULT HasNonLinearSegments(
  Boolean* nonLinearSegments
);
[C++]
Parameters
nonLinearSegments [in, out]

nonLinearSegments is a parameter of type bool*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Returns TRUE if the Segment Collection contains CircularArcs, BezierCurves, or EllipticArcs.  Returns FALSE if all segments are Lines.

See Also

ISegmentCollection Interface