ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Various properties
  • Equivalence
  • Limitations
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The Title property is used to:
  • Get the title of a Table control column, a Chart control, a window or a page.
  • Change the title of a Table control column, a Chart control, a window or a page.
In reports, this property is used to get and change the title of a Chart control.
Example
Syntax

Getting the title of an element Hide the details

<Result> = <Element name>.Title
<Result>: Character string
  • Title of specified window or page.
  • Title of specified column.
  • Title of column to which the specified table cell belongs.
  • Title of specified Chart control.
<Element name>: Character string
Name of element (column, chart, table cell, window or page) to use.
A table cell has no name. To retrieve the title of column to which a table cell belongs, use the following syntax:
<Table name>[Row number][Column number]

For example:
TABLE_Table1[1][2]

Changing the title of an element Hide the details

<Element name>.Title = <New title>
<Element name>: Character string
Name of element (column, chart, table cell, window or page) to use.
A table cell has no name. To retrieve the title of column to which a table cell belongs, use the following syntax:
<Table name>[Row number][Column number]

For example:
TABLE_Table1[1][2]
<New title>: Any type
  • New title for the specified window or page. The graphic functions can be used in this parameter.
    Special case in Windows Vista (and later): Windows that use the "Aero system" style cannot have a graphic title: the graphic part is ignored. If "Aero" is not enabled, the graphic title will be displayed as usual.
  • New title for the column.
  • New title for the Chart control.
Remarks

Equivalence

The Title, Value and Caption properties are equivalent.
To get the window title, use one of the following syntaxes:
ResTitle = <Window name>.Title

ResTitle = <Window name>.Value

ResTitle = <Window name>.Caption

ResTitle = <Window name>
To get the column title, use one of the following syntaxes:
ResTitle = <Column name>.Title

ResTitle = <Column name>.Caption

Limitations

The Title property applies only to:
  • windows and pages,
  • columns in Table and TreeView Table controls,
  • cells in Table and TreeView Table controls,
  • Chart controls,
Reports and Queries In a report, the Title property applies only to Chart controls.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/12/2023

Send a report | Local help