ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Managing external languages / Object functions
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
Table,Delete (External language)
In french: Table,Supprime
Deletes an element from a Table control.
Example
// In C
CALLWD("Table,Delete,ProdTable,3");
// In Pascal
CALLWD('Table,Delete,ProdTable,3');
// In VB
call CALLWD("Table,Delete,ProdTable,3")
Syntax
Table,Delete(<Table control> [, <Index>])
<Table control>: Control name
Name of the Table control to be used.
<Index>: Character string (optional)
Index of the element to be deleted. The elements below move up one row.
If the index is not specified, the selected element is deleted.
For a Table control populated programmatically, the index is relative to the entire Table control.
For a Table control based on a data file, the index is relative to the elements displayed.
Remarks
  • For a Table control based on a data file, the record is directly deleted from the data file.
  • If you want to delete multiple records successively, it is recommended to start from the last element to be deleted. When an element is deleted, the elements below move up.
  • Table,Delete,<Table control>,* deletes all the elements from a Table control populated programmatically.
Minimum version required
  • Version 14
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help