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.bmp

Same as the default cursor

crCross, -3

CrCross.bmp

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

crIBeam, -4

CrIBeam.bmp

Text insert cursor in the form of a thin capital I

crSizeNESW, -6

CrSizeNESW.bmp

Resizing cursor from North-East to South-West resizing

crSizeNS, -7

CrSizeNS.bmp

Vertical resizing cursor

crSizeNWSE, -8

CrSizeNWSE.bmp

Resizing cursor from North-West to South-East resizing

crSizeWE, -9

CrSizeWE.bmp

Horizontal resizing cursor

crUpArrow, -10

CrUpArrow.bmp

Thin upward pointing cursor

crHourGlass, -11

CrHourGlass.bmp

Hour glass cursor to indicate a busy process

crDrag, -12

CrDrag.bmp

Drag cursor for single items being dragged

crNoDrop, -13

CrNoDrop.bmp

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

crHSplit, -14

CrHSplit.bmp

Cursor shown when the mouse is over a horizontal splitter.

crVSplit, -15

CrVSplit.bmp

Cursor shown when the mouse is over a vertical splitter.

crMultiDrag, -16

CrMultiDrag.bmp

Drag cursor for multiple items being dragged

crSQLWait, -17

CrSQLWait.bmp

Hour glass cursor to indicate a busy SQL database operation

crNo, -18

CrNo.bmp

Black cross in a black circle indicating invalid mouse target location

crAppStart, -19

CrAppStart.bmp

Hour glass and standard pointer combination cursor shown at application startup

crHelp, -20

CrHelp.bmp

Question mark and standard pointer operation

crHandPoint, -21

CrHandPoint.bmp

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

crSizeAll, -22

CrSizeAll.bmp

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