Vcl.Grids.TGridDrawInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGridDrawInfo = record

C++

struct DECLSPEC_DRECORD TGridDrawInfo
{
public:
    TGridAxisDrawInfo Horz;
    TGridAxisDrawInfo Vert;
};

Properties

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

Description

Contains information about the axes, useful when rendering a grid.

TGridDrawInfo encapsulates information that reflects the layout of the grid axes.

The TGridDrawInfo record has two fields: Horz (contains information about the horizontal axis of the grid) and Vert (contains information about the vertical axis).

See Also