Vcl.Forms.TCursorRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TCursorRec = record
    Next: PCursorRec;
    Index: Integer;
    Handle: HCURSOR;
  end;

C++

struct DECLSPEC_DRECORD TCursorRec
{
public:
    TCursorRec *Next;
    int Index;
    HICON Handle;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms Vcl.Forms

Description

Record that holds information about a cursor in a list.

TCursorRecType is a record that holds information about a cursor in a list of Windows cursors.

See Also