RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Grids.TGridAxisDrawInfo Record

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

Pascal
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 TGridAxisDrawInfo {
  int EffectiveLineWidth;
  int FixedBoundary;
  int GridBoundary;
  int GridExtent;
  Longint LastFullVisibleCell;
  int FullVisBoundary;
  int FixedCellCount;
  int FirstGridCell;
  int GridCellCount;
  TGetExtentsFunc GetExtent;
};

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. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!