|
|
|
|
|
TableAddTitleHeader (Function) In french: TableAjouteSurEntête Adds a column title-header into a Table or TreeView Table control in a window. Note It is also possible to add a column header from the Table or Hierarchical Table field description window ("Detail" tab, "Edit column title-headers" button).
TableAddTitleHeader(TABLE_Chiffre, 2, 4, "Prévision")
TableAddTitleHeader(TABLE_Chiffre, 5, 7, "Réalisé")
TableAddTitleHeader(TABLE_Menu, COL_Entrée, 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|