FMX.Grid.TGrid
Delphi
TGrid = class(TCustomGrid)
C++
class PASCALIMPLEMENTATION TGrid : public TCustomGrid
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | FMX.Grid.pas FMX.Grid.hpp |
FMX.Grid | FMX.Grid |
Description
TGrid represents a grid control designed to simplify the handling of various objects in a tabular format.
Add a TGrid object to a form to present various object data in a tabular format. A TGrid can have one or more of the following columns that can contain specific object data:
- TCheckColumn--holds cells with check-boxes.
- TImageColumn--holds cells with graphical images.
- TPopupColumn--holds cells with pop-up menus.
- TProgressColumn--holds cells with progress bar objects.
- TStringColumn--holds cells with strings.
- TDateColumn--holds cells with TDateEdit objects.
- TTimeColumn--holds cells with TTimeEdit objects.
- TCurrencyColumn--holds cells with Currency values.
- TGlyphColumn--holds cells with TImageList objects.
If you need a grid that can hold only strings, use a TStringGrid instead.
See Also
- FMX.Grid.TStringGrid
- TGrid code example
- GridExplorer sample application