Window.InternalSetMousePosition Method

SFML.Net

WindowInternalSetMousePosition Method
Internal function to set the mouse 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 void InternalSetMousePosition(
	Vector2i position
)
Protected Overridable Sub InternalSetMousePosition ( 
	position As Vector2i
)
protected:
virtual void InternalSetMousePosition(
	Vector2i position
)
abstract InternalSetMousePosition : 
        position : Vector2i -> unit 
override InternalSetMousePosition : 
        position : Vector2i -> unit 

Parameters

position
Type: SFML.SystemVector2i
Relative mouse position
See Also