Vcl.Controls.GetCursorValues

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetCursorValues(Proc: TGetStrProc);

C++

extern DELPHI_PACKAGE void __fastcall GetCursorValues(System::Classes::TGetStrProc Proc);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

Passes the name of every predefined cursor constant to a callback.

Call GetCursorValues to execute a callback for every built-in cursor constant in the VCL. The Proc parameter is the callback function that is called for every cursor constant name.

Note: To convert the strings that are passed to the callback into actual cursors, use IdentToCursor. To convert a cursor into a constant name that can be compared with the string passed to the callback, use CursorToIdent.

See Also