﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3815	Remark in help regarding return value of _ArrayDelete is wrong	anonymous		"The ""Remarks"" section of the _ArrayDelete function contains the following text regarding the return value (see [https://www.autoitscript.com/autoit3/docs/libfunctions/_ArrayDelete.htm]):
''""[...] but the return value of the function (if successful) gives the new highest row index of the array.""''
But this statement is not true.
The return value is not the new highest row index, but the total number of rows.
See also the following example.

{{{
#include <Array.au3>

Local $aArray[5] = [0, 1, 2, 3, 4]

ConsoleWrite(""Number of array elements before deletion: "" & UBound($aArray) & @CRLF)
ConsoleWrite(""Return value of _ArrayDelete: "" & _ArrayDelete($aArray, 2) & @CRLF)
ConsoleWrite(""Number of array elements after deletion: "" & UBound($aArray) & @CRLF)
}}}
"	Bug	closed		Documentation	3.3.14.5	None	No Bug		
