Grids.TCustomGrid
Contents |
Delphi Information
From Grids.pas
TCustomGrid = class(TCustomControl)
Unit: Grids
Type: class
Inherited Class Members: Grids.TCustomGrid Members
Class Properties: Grids.TCustomGrid Properties
Class Methods: Grids.TCustomGrid Methods
Class Fields: Grids.TCustomGrid Fields
Class Constructors & Destructors: Grids.TCustomGrid Constructors
Class Events: Grids.TCustomGrid Events
C++ Information
From Grids.hpp
TCustomGrid = class(TCustomControl)
Unit: Grids
Type: class
Inherited Class Members: Grids.TCustomGrid Members
Class Properties: Grids.TCustomGrid Properties
Class Methods: Grids.TCustomGrid Methods
Class Fields: Grids.TCustomGrid Fields
Class Constructors & Destructors: Grids.TCustomGrid Constructors
Class Events: Grids.TCustomGrid Events
Description
TCustomGrid is the base type for all components that present information in a two-dimensional grid.
Use TCustomGrid as a base class when defining components that represent information in a tabular format. TCustomGrid introduces properties and methods to control the appearance and behavior of the grid, including responses to mouse actions and user editing.
Do not create instances of TCustomGrid. Instead, put a grid control in a form by instantiating a descendant of TCustomGrid. Use TDrawGrid to represent non-textual material in a tabular grid. For text, use a TStringGrid object. If the text represents field values from a dataset, use TDBGrid.