Contents

CGWarpMouseCursorPosition(_:)

Moves the mouse cursor without generating events.

Declaration

func CGWarpMouseCursorPosition(_ newCursorPosition: CGPoint) -> CGError

Parameters

  • newCursorPosition:

    The new mouse cursor position in the global display coordinate space.

Return Value

A result code. See Core Graphics Data Types and Constants.

Discussion

You can use this function to “warp” or alter the cursor position without generating or posting an event. For example, this function is often used to move the cursor position back to the center of the screen by games that do not want the cursor pinned by display edges.

See Also

Functions