ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Table functions
  • Use conditions
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
Swaps:
  • two rows in a Table control populated programmatically.
  • two branches in a TreeView Table control populated programmatically.
Remarks:
  • In a Table control, <Table>.SwapLine is used to swap two rows identified by their number. To perform a specific swap (taking the current row into account, ...), use <Table>.MoveLine.
  • In a TreeView Table control, <Table>.SwapLine is used to swap two branches identified by their number. To swap rows identified by their path, use <TreeView Table>.SwapBranch.
Example
// Swap rows 5 and 20 in a Table control
TABLE_Menu.SwapLine(5, 20)
Syntax
<Table control>.SwapLine(<Index of row to move> , <Destination row index>)
<Table control>: Control name
Name of Table or TreeView Table control to use.
<Index of row to move>: Integer
Position of the row to move. This position must be included between 1 and the total number of rows found in the control (returned by <Table>.Count or Count for example).
<Destination row index>: Integer
New row position. This position must be included between 1 and the total number of rows found in the control (returned by <Table>.Count or Count for example). A fatal error occurs if this parameter is not valid.
Remarks

Use conditions

<Table>.SwapLine can be used on:
  • a Table or TreeView Table control populated programmatically.
  • WEBDEV - Server codePHP a Table control in "Server" or "Server + AJAX" mode, or on a TreeView Table control.
  • WEBDEV - Browser code a Table control in "Browser" mode.
Component: wd290obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/20/2023

Send a report | Local help