Vcl.Controls.TCursor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TCursor = -32768..32767;

Properties

Type Visibility Source Unit Parent
type public Vcl.Controls.pas Vcl.Controls Vcl.Controls

Description

TCursor identifies the cursor type.


TCursor defines the type of mouse cursor. A variable of type TCursor can have one of the following values:

Cursor Constant, Value Image Description

crDefault, 0

None

Default cursor: thick arrow pointing up and left

crArrow, -2

CrArrow.png

Same as the default cursor

crCross, -3

CrCross.png

Fine cross-shaped cursor used in graphic applications for precise positioning

crIBeam, -4

CrIBeam.png

Text insert cursor in the form of a thin capital I

crSizeNESW, -6

CrSizeNESW.png

Resizing cursor from North-East to South-West resizing

crSizeNS, -7

CrSizeNS.png

Vertical resizing cursor

crSizeNWSE, -8

CrSizeNWSE.png

Resizing cursor from North-West to South-East resizing

crSizeWE, -9

CrSizeWE.png

Horizontal resizing cursor

crUpArrow, -10

CrUpArrow.png

Thin upward pointing cursor

crHourGlass, -11

CrHourGlass.png

Hour glass cursor to indicate a busy process

crDrag, -12

CrDrag.png

Drag cursor for single items being dragged

crNoDrop, -13

CrNoDrop.png

White cross in a white circle indicating that a drag operation is hovering over an invalid drop target.

crHSplit, -14

CrHSplit.png

Cursor shown when the mouse is over a horizontal splitter.

crVSplit, -15

CrVSplit.png

Cursor shown when the mouse is over a vertical splitter.

crMultiDrag, -16

CrMultiDrag.png

Drag cursor for multiple items being dragged

crSQLWait, -17

CrSQLWait.png

Hour glass cursor to indicate a busy SQL database operation

crNo, -18

CrNo.png

Black cross in a black circle indicating invalid mouse target location

crAppStart, -19

CrAppStart.png

Hour glass and standard pointer combination cursor shown at application startup

crHelp, -20

CrHelp.png

Question mark and standard pointer operation

crHandPoint, -21

CrHandPoint.png

An upward pointing hand cursor. This is normally used to identify a selectable item, such as a web page link.

crSizeAll, -22

CrSizeAll.png

Cursor for resizing up, down, left, and right


Use the TScreen Cursor property to set the cursor type to one of the TCursor values.

See Also