VertexArray.Item Property

SFML.Net

VertexArrayItem Property
Read-write access to vertices by their index. This function doesn't check index, it must be in range [0, VertexCount - 1]. The behaviour is undefined otherwise.

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Vertex this[
	uint index
] { get; set; }
Public Default Property Item ( 
	index As UInteger
) As Vertex
	Get
	Set
public:
property Vertex default[unsigned int index] {
	Vertex get (unsigned int index);
	void set (unsigned int index, Vertex value);
}
member Item : Vertex with get, set

Parameters

index
Type: SystemUInt32
Index of the vertex to get

Return Value

Type: Vertex
Reference to the index-th vertex
See Also