RenderWindow.InternalGetTouchPosition Method

SFML.Net

RenderWindowInternalGetTouchPosition 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.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
protected override Vector2i InternalGetTouchPosition(
	uint Finger
)
Protected Overrides Function InternalGetTouchPosition ( 
	Finger As UInteger
) As Vector2i
protected:
virtual Vector2i InternalGetTouchPosition(
	unsigned int Finger
) override
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