Gets the point at specified index.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic Point2d this[
int i
] { get; }
Public ReadOnly Default Property Item (
i As Integer
) As Point2d
Get
public:
property Point2d default[int i] {
Point2d get (int i);
}
member Item : Point2d with get
Parameters
- i
- Type: SystemInt32
Index of the point.
Return Value
Type:
Point2dThe point at specified index..
ExceptionsException | Condition |
---|
IndexOutOfRangeException |
IndexOutOfRangeException is thrown if index is lower than 0 or greater than 2. |
See Also