Gets the collection of feature line components that make up the edge, if the border was originally defined by selecting segments of feature lines.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public FeatureLineComponentCollection FeatureLineComponents { get; }
Visual Basic
Public ReadOnly Property FeatureLineComponents As FeatureLineComponentCollection
	Get
Visual C++
public:
property FeatureLineComponentCollection^ FeatureLineComponents {
	FeatureLineComponentCollection^ get ();
}

Examples

CopyC#
1foreach (FeatureLineComponent oFeatureLineComponent in oCorridorSurfaceBoundary.FeatureLineComponents)
2{
3    ed.WriteMessage("Code: {0}, Start station: {1}, End station: {2}\n",
4        oFeatureLineComponent.FeatureLine.CodeName,
5        oFeatureLineComponent.StartStation,
6        oFeatureLineComponent.EndStation);
7}

Exceptions

ExceptionCondition
System..::..InvalidOperationException Thrown when the border is defined from polygon or corridor extents.

See Also