Text.FindCharacterPos Method

SFML.Net

TextFindCharacterPos Method
Return the visual position of the Index-th character of the text, in coordinates relative to the text (note : translation, origin, rotation and scale are not applied)

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Vector2f FindCharacterPos(
	uint index
)
Public Function FindCharacterPos ( 
	index As UInteger
) As Vector2f
public:
Vector2f FindCharacterPos(
	unsigned int index
)
member FindCharacterPos : 
        index : uint32 -> Vector2f 

Parameters

index
Type: SystemUInt32
Index of the character

Return Value

Type: Vector2f
Position of the Index-th character (end of text if Index is out of range)
See Also