ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Various properties
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
AdditionCompleted (Property)
In french: AjoutTerminé
The AdditionCompleted property determines if an element was added to a queue, list or stack, or if the operation is in progress. This status is used when handling multiple threads.
For example, with this property, one thread can let another thread know that it has added all the elements to the queue.
// For more details, see the full example of the property
gFilesnames.AdditionCompleted = True
Syntax

Determining if an element has been added to a queue, list or stack Hide the details

<Addition mode> = <Element name>.AdditionCompleted
<Addition mode>: Boolean
  • True if the element was added to the queue, list or stack.
  • False if the element has not yet been added to the queue, list or stack.
<Element name>: Queue, List or Stack
Name of the Queue, List or Stack variable used.

Changing the addition status of an element in a queue, list or stack Hide the details

<Element name>.AdditionCompleted = <New mode>
<Element name>: Queue, List or Stack
Name of the Queue, List or Stack variable used.
<New mode>: Boolean
  • True if the element was added to the queue, list or stack.
  • False if the element has not yet been added to the queue, list or stack.
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/17/2023

Send a report | Local help