GetCursorType

From SCAR Divi Manual
Jump to: navigation, search

Definition

function GetCursorType: TCursor;

Availability

SCAR Divi 3.21 > Current

Description

Returns the current cursor type as a TCursor.

Example

begin
  repeat      
    ClearDebug;
    WriteLn(GetCursorType);
    Wait(50); 
  until False;
end.