ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Queue, stack, list and array functions / Array functions
  • Deleting the last row
  • Miscellaneous
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
Deletes a row at a given position:
  • from a two-dimensional array.
  • from the advanced array property (array of gglCalendar events, etc.)
The array size is automatically reduced.
Remark: This function is equivalent to DeleteLine.
Example
MyArray is array of 2 by 3 strings
ArrayInsertLine(MyArray, 1, "A", "B", "C")
ArrayInsertLine(MyArray, 2, "a", "b", "c")
ArrayInsertLine(MyArray, 3, "D", "E", "F")
// Delete the 1st row
ArrayDeleteLine(MyArray, 1) // Deletes "A B C"
// Display the 1st row
Trace(MyArray[1,1], MyArray[1,2], MyArray[1,3])
// Displays "a b c"
Syntax
ArrayDeleteLine(<WLanguage array> , <Row index>)
<WLanguage array>: Array
Name of the Array variable to use. This array must be a two-dimensional array.
<Row index>: Integer
Index of the row to delete. A WLanguage error occurs if this parameter is greater than the number of array lines.
Remarks

Deleting the last row

If the last line is deleted, the array is resized to 0. The array has not been deleted: New additions can be performed without re-creating the array.

Miscellaneous

This function cannot be used with the fixed arrays.
Component: wd290vm.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help