API:Vcl.Grids.TGridRect

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TGridRect = record
    case Integer of
      0: (Left, Top, Right, Bottom: Longint);
      1: (TopLeft, BottomRight: TGridCoord);
  end;

C++

struct DECLSPEC_DRECORD TGridRect
{
public:
    union
    {
        struct
        {
            TGridCoord TopLeft;
            TGridCoord BottomRight;
        };
        struct
        {
            int Left;
            int Top;
            int Right;
            int Bottom;
        };
    };
};

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.