Triangle2dGetSegmentAt Method |
Gets the LineSegement2d at specified index.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic LineSegment2d GetSegmentAt(
int index
)
Public Function GetSegmentAt (
index As Integer
) As LineSegment2d
public:
LineSegment2d^ GetSegmentAt(
int index
)
member GetSegmentAt :
index : int -> LineSegment2d
Parameters
- index
- Type: SystemInt32
Index of the segment.
Return Value
Type:
LineSegment2dThe LineSegement2d at specified index.
ExceptionsException | Condition |
---|
IndexOutOfRangeException |
IndexOutOfRangeException is thrown if indes is lower than 0 or greater than 2. |
See Also