|
|
|
|
|
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.
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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|