Vcl.Grids.TGridAxisDrawInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TGridAxisDrawInfo = record
    EffectiveLineWidth: Integer;
    FixedBoundary: Integer;
    GridBoundary: Integer;
    GridExtent: Integer;
    LastFullVisibleCell: Longint;
    FullVisBoundary: Integer;
    FixedCellCount: Integer;
    FirstGridCell: Integer;
    GridCellCount: Integer;
    GetExtent: TGetExtentsFunc;
  end;

C++

struct DECLSPEC_DRECORD TGridAxisDrawInfo
{
public:
    int EffectiveLineWidth;
    int FixedBoundary;
    int GridBoundary;
    int GridExtent;
    int LastFullVisibleCell;
    int FullVisBoundary;
    int FixedCellCount;
    int FirstGridCell;
    int GridCellCount;
    TGetExtentsFunc GetExtent;
};

Properties

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

Description

TGridAxisDrawInfo and TGridDrawInfo represent information that is useful when rendering a grid.

TGridDrawInfo encapsulates information that reflects the layout of the grid axes. Each axis is described by a TGridAxisDrawInfo value, which encodes information about the size of the axis and the type and number of cells along that axis.

See Also