Gets or sets a point in the set.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Point this[
	int index
] { get; set; }
Visual Basic (Declaration)
Public Default Property Item ( _
	index As Integer _
) As Point
Visual C++
public:
property Point^ default[int index] {
	Point^ get (int index);
	void set (int index, Point^ value);
}

Parameters

index
Type: System..::.Int32
The zero-based index of the point.

Field Value

The point at position index in the point set

Return Value

Returns a the Point at index index in the point set.

See Also