|
|
|
|
|
TableAddTitleHeader (Function) In french: TableAjouteSurEntête Adds a column title-header into a Table or TreeView Table control in a window. Remark: You can also add a column title-header from the Table or TreeView Table control description window ("Details", tab, "Edit column title-headers"). // 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
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|