API:Vcl.Grids.THotTrackCellInfo

Aus RAD Studio API Documentation

Delphi

  THotTrackCellInfo = record
    Pressed: Boolean;
    Button: TMouseButton;
    case Integer of
    0: (Coord: TGridCoord deprecated 'Use THotTrackCellInfo.Rect field');
    1: (Rect: TGridRect);
  end;

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") ;
        };
    };
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids Vcl.Grids

Beschreibung

Embarcadero Technologies verfügt zurzeit über keine zusätzlichen Informationen. Bitte unterstützen Sie uns bei der Dokumentation dieses Themas, indem Sie Ihre Kommentare auf der Diskussionsseite eingeben.