ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Table functions
  • Use conditions
  • Characteristics of row elements
  • Changes in a Table or TreeView Table control based on a data file
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Modifies a row in:
  • a Table control,
  • a TreeView Table control.
Example
// Modification des éléments "Paul" et "Dubois" 
// de la cinquième ligne du champ Table "TABLE_TableClient"
TableModifyLine(TABLE_TableClient, 5, "Paul", "Dubois")
Syntax
TableModifyLine(<Table control> , <Index> [, <Element column 1> [... [, <Element column N>]]])
<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 event belongs will be used.
<Index>: Integer
Index of the row to be modified. The index of the first row is set to 1.
Index equal to -1The current row is modified. No effect if no row is selected.
Index greater than the number of control rowsA WLanguage error occurs.
<Element column 1>: Optional character string
First element of the modified row. The value of this element replaces the existing value. Each element corresponds to a column. Each type of modified element must be compatible with the type of relevant column.
If none of the <Element column X> parameters are specified, TableModifyLine has no effect.
<Element column N>: Optional character string
Nth element of the modified row. The value of this element replaces the existing value. Each element corresponds to a column. Each type of modified element must be compatible with the type of relevant column.
If none of the <Element column X> parameters are specified, TableModifyLine has no effect.
Remarks

Use conditions

TableModifyLine can be used on:
  • Table or TreeView Table controls based on a data file.
  • Table or TreeView Table controls populated programmatically.
  • single-selection or multi-selection controls.
AndroidiPhone/iPad Table controls based on a data file are not available in edit mode. TableModifyLine cannot be used on Table controls based on a data file.

Characteristics of row elements

  • To modify the value of an element in a row, use the following syntax:
    ChampTable.NomColonne[IndiceLigne] = NouvelleValeur
  • If an element corresponds to the calculation result, the numeric expression must be enclosed in brackets.
    For example:
    TableModifyLine(TABLE_TableCalcul, (53+29),(83-21))

Changes in a Table or TreeView Table control based on a data file

To modify a row in a Table or TreeView Table control based on a data file, we advise you to:
Component: wd300obj.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help