|
|
|
|
- Use conditions
- The different types of column indices
<Table>.EnumColumn (Function) In french: <Table>.EnumèreColonne Returns the name of a column found in a Table or Treeview Table control.
// Name of third column found in the "TABLE_ProductTable" control ResColumnName = TABLE_ProductTable.EnumColumn(3)
Syntax
<Result> = <Table control>.EnumColumn(<Column index>)
<Result>: Character string - Column name.
  This result can be assigned to a Control variable. - Empty string ("") if <Column index> is equal to the number of columns in the Table control + 1.
<Table control>: Control name Name of the Table control to be used. <Column index>: Integer Index of the column, between 1 and the number of columns in the Table control + 1. A WLanguage error occurs if this parameter is greater than the number of columns found in the Table control + 1.To find out the number of columns in a Table control, use <Table>.Count. Remarks Use conditions <Table>.EnumColumn can be used on: - a Table control based on a data file or populated programmatically.
- a TreeView Table control based on a data file or populated programmatically.
- a single-selection or multiselection control,
The different types of column indices There are 2 types of indices for columns: - Index of the visible position: index of the column when the window is executed.
- Creation index: index of the column when the control is created in the window editor.
These indices change if the user moves the columns. <Table>.EnumColumn uses the column creation index.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|