ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Table functions
  • Use conditions
  • Characteristics of row elements
  • Position of the new row
  • Limitations: Maximum number of rows displayed
  • Adding images
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 row in:
  • a Table control,
  • a TreeView Table control.
If the added row is the first row of the control, the added row becomes the current row.
Remarks:
Example
// Add "Moore" and "Vince"
// in the last row of the "TABLE_ProductTable" control
TABLE_ProductTable.AddLine("Moore", "Vince")
Syntax
<Result> = <Table control>.AddLine([<Element column 1> [... [, <Element column N>]]])
<Result>: Integer
  • Index of the added row,
  • -1 if an error occurred.
<Table control>: Control name
Name of the control to be used. This control can correspond to:
  • a Table control.
  • a TreeView Table control.
<Element column 1>: Type of associated column (optional)
Elements of the row that will be added into the specified control. Each element corresponds to a control column. The type of the added element must be compatible with the type of relevant column.
If none of these parameters is specified, an empty row is added into the control. For a control based on a data file, the default values defined in the linked data file are taken into account.
<Element column N>: Type of associated column (optional)
Elements of the row that will be added into the specified control. Each element corresponds to a control column. The type of the added element must be compatible with the type of relevant column.
If none of these parameters is specified, an empty row is added into the control. For a control based on a data file, the default values defined in the linked data file are taken into account.
Remarks

Use conditions

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

Characteristics of row elements

  • To specify no value for an element, use an empty string ("") or 0 (according to the type of column).
  • If an element corresponds to the calculation result, the numeric expression must be enclosed in brackets.
    For example:
    TABLE_CalcTable.AddLine((53+29), (83-21))

Position of the new row

By default, the row is added at the end of the rows displayed by the control.
Special case:
  • If the control is sorted by <Table>.Sort, the added row is positioned in the control according to the current sort.
  • If the control is sorted by the user, the sort is ignored when inserting the row. The row is added at the end of control.

Limitations: Maximum number of rows displayed

The maximum number of rows that can be displayed in a Table or TreeView Table control is limited by the amount of available memory (theoretical maximum: 2 billion rows).
However, we do not advise you to use large Table or TreeView Table controls for performance and user-friendliness reasons (time required to fill the control for example).

Adding images

To add an image into a Table or TreeView Table control:
    Remark: The column must be an Image column otherwise the added image will not be displayed properly.
    Component: wd290obj.dll
    Minimum version required
    • Version 23
    This page is also available for…
    Comments
    Click [Add] to post a comment

    Last update: 11/21/2023

    Send a report | Local help