API:Vcl.Grids.TGridRect

From RAD Studio API Documentation
Jump to: navigation, search

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

Properties

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

Description

Embarcadero Technologies does not currently have any additional information.