| Customizing the Grid's Appearance > Captions, Headers, and Footers |
You can affix a title to a grid, column, or split by setting the Caption property of the appropriate object.
| Example Title |
Copy Code
|
|---|---|
TDBGrid1.Caption = "Grid Caption" TDBGrid1.Columns(0).Caption = "Column 0 Caption" TDBGrid1.Splits(0).Caption = "Split 0 Caption" |
|