ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Table functions
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
Adds a column title-header into a Table or TreeView Table control in a window.
Title-header in a Table control
Remark: You can also add a column title-header from the Table or TreeView Table control description window ("Details", tab, "Edit column title-headers").
Example
// Adds a title-header above the columns 2, 3 and 4
TableAddTitleHeader(TABLE_Turnover, 2, 4, "Forecast")
// Adds a title-header above the columns 5, 6 and 7
TableAddTitleHeader(TABLE_Turnover, 5, 7, "Performed")
 
// Adds a title-header above the menu columns
TableAddTitleHeader(TABLE_Menu, COL_Starter, COL_Dessert, "Menu")
Syntax

Adding a title-header on columns identified by their index Hide the details

TableAddTitleHeader(<Table control> , <Index of first column> , <Index of last column> , <Caption>)
<Table control>: Control name
Name of the control to be used. This control can correspond to:
  • a Table control.
  • a TreeView Table control.
If this parameter corresponds to an empty string (""), the control to which the current process belongs will be used.
<Index of first column>: Integer
Index of the column above which the title-header will start.
<Index of last column>: Integer
Index of the column above which the title-header will end. The index of this column must be greater than <Index of first column>.
<Caption>: Character string
Caption that must be displayed in the title-header.

Adding a title-header on columns identified by their name Hide the details

TableAddTitleHeader(<Table control> , <First column> , <Last column> , <Caption>)
<Table control>: Control name
Name of the control to be used. This control can correspond to:
  • a Table control.
  • a TreeView Table control.
If this parameter corresponds to an empty string (""), the control to which the current process belongs will be used.
<First column>: Control name
Name of the column above which the title-header must start.
<Last column>: Control name
Name of column above which the title-header must end.
<Caption>: Character string
Caption that must be displayed in the title-header.
Remarks
  • Through programming, a single title-header level can be added. To add several levels, you must use the description window of the Table or TreeView Table control ("Details" tab, "Edit column title-headers").
  • The TitleHeader property allows you to:
    • Know and modify the title and the aspect of a column title header in a Table control.
    • Get the number of title headers of a column in a Table control.
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 18
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help