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