Applies to
DataWindow controls, Graph controls, Windows
Description
The Title property specifies the title text of the control or window. In a window or DataWindow control, this value is displayed only if the TitleBar property is also enabled.
Usage
In a painter
To specify title text:
-
Type the title text in the Title field and select the TitleBar check box on the General page of the control's Properties view.
In scripts
The Title property takes a string value. The following lines set a title for a DataWindow control dw_1:
dw_1.TitleBar = TRUE dw_1.Title = "Monthly Report"