API:Vcl.Grids.TGridRect

De RAD Studio API Documentation
Aller à : navigation, rechercher

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

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids Vcl.Grids

Description

Embarcadero Technologies ne possède pas d'informations supplémentaires pour le moment. Veuillez nous aider à documenter cette rubrique en utilisant la page Discussion !