Window.InternalGetTouchPosition Method

SFML.Net

WindowInternalGetTouchPosition Method
Internal function to get the touch position relative to the window. This function is protected because it is called by another class of another module, it is not meant to be called by users.

Namespace: SFML.Window
Assembly: sfmlnet-window-2 (in sfmlnet-window-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
protected virtual Vector2i InternalGetTouchPosition(
	uint Finger
)
Protected Overridable Function InternalGetTouchPosition ( 
	Finger As UInteger
) As Vector2i
protected:
virtual Vector2i InternalGetTouchPosition(
	unsigned int Finger
)
abstract InternalGetTouchPosition : 
        Finger : uint32 -> Vector2i 
override InternalGetTouchPosition : 
        Finger : uint32 -> Vector2i 

Parameters

Finger
Type: SystemUInt32
Finger index

Return Value

Type: Vector2i
Relative touch position
See Also