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 Point3d this[
int i
] { get; }
Public ReadOnly Default Property Item (
i As Integer
) As Point3d
Get
public:
property Point3d default[int i] {
Point3d get (int i);
}
member Item : Point3d with get
Parameters
- i
- Type: SystemInt32
Index of the point.
Return Value
Type:
Point3dThe point at specified index..
ExceptionsException | Condition |
---|
IndexOutOfRangeException |
IndexOutOfRangeException is thrown if index is lower than 0 or greater than 2. |
See Also