MouseCursorKind

public enum MouseCursorKind

Undocumented

  • A standard arrow cursor.

    Declaration

    Swift

    case arrow
  • A standard I-beam cursor used in text controls.

    Declaration

    Swift

    case iBeam
  • Resize arrow pointing up and down.

    Declaration

    Swift

    case resizeUpDown
  • Resize arrow pointing left and right.

    Declaration

    Swift

    case resizeLeftRight
  • Resize arrow pointing from the top-left corner to the bottom-right corner.

    Declaration

    Swift

    case resizeTopLeftBottomRight
  • Resize arrow pointing from the top-right corner to the bottom-left corner.

    Declaration

    Swift

    case resizeTopRightBottomLeft
  • Resize arrow pointing left, top, right, and bottom.

    Declaration

    Swift

    case resizeAll
  • A custom cursor with a path to the cursor file.

    Declaration

    Swift

    case custom(imagePath: String, hotspot: UIVector)