Vcl.Grids.THotTrackCellInfo
Delphi
THotTrackCellInfo = record
C++
struct DECLSPEC_DRECORD THotTrackCellInfo
{
public:
bool Pressed;
System::Uitypes::TMouseButton Button;
public:
union
{
struct
{
TGridRect Rect;
};
struct
{
TGridCoord Coord _DEPRECATED_ATTRIBUTE1("Use THotTrackCellInfo.Rect field") ;
};
};
};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
record struct |
public | Vcl.Grids.pas Vcl.Grids.hpp |
Vcl.Grids | Vcl.Grids |
Description
Specifies information associated with a hot-track event.
THotTrackCellInfo is a record that contains information associated with a hot-track event. The following table describes the members of the THotTrackCellInfo record.
Value | Meaning |
---|---|
Coord |
The logical coordinates of the cell. |
Pressed |
Specifies whether the cell is in pressed state. |
Button |
Specifies the mouse button if the Pressed field is true. |