API:Vcl.Grids.THotTrackCellInfo

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

プロパティ

種類 可視性 ソース ユニット
record
struct
public
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids Vcl.Grids

説明

このトピックには現在ドキュメントが存在しません。「ノート」を利用してこのトピックの改良について話しあうことができます。