Skip to main content
Version: 20 Mar 2024

CursorState

Struct to define the cursor's state.

Public Methods

CursorState Create

Create and return an initialized version of this struct.

public static CursorState Create(
uint xPosition,
uint yPosition,
EventFlags modifiers
)

Parameters

TypeNameDescription
uintxPosition
uintyPosition
EventFlagsmodifiersFlags to set special key states during input.

Returns: A new instance of this struct.


Public Attributes

Modifiers

Should be one or combination of #MLWebViewEventFlags.


public EventFlags Modifiers;

TypeDescription
EventFlagsFlags to set special key states during input.

Version

Version of this struct.


public uint Version;


XPosition

Horizontal position of the cursor.


public uint XPosition;


YPosition

Vertical position of the cursor.


public uint YPosition;