SortedList.LockWaitTime (PROP) ¶ PROPERTY LockWaitTime : SYSTIME Set and get the wait time. If a call is blocked, the call is repeated after LockWaitTime . Default: 300 µs
SortedList.RemoveAllElements (METH) ¶ METHOD RemoveAllElements : COLLECTION_ERROR Removes all elements from the collection. InOut: Scope Name Type Return RemoveAllElements COLLECTION_ERROR
SortedList.RemoveElement (METH) ¶ METHOD RemoveElement : COLLECTION_ERROR Removes the element itfElement from the collection. InOut: Scope Name Type Comment Return RemoveElement COLLECTION_ERROR Input itfElement IElement The element to remove.
QueueFactory.prvInstSize (PROP) ¶ PROPERTY prvInstSize : CAA.SIZE
SortedList.AddElement (METH) ¶ METHOD AddElement : COLLECTION_ERROR Add the element itfElement to the collection and sorts the list. InOut: Scope Name Type Comment Return AddElement COLLECTION_ERROR Input itfElement IElement The element to add.
SortedList.AddElementWithoutSorting (METH) ¶ METHOD AddElementWithoutSorting : COLLECTION_ERROR Add the element itfElement to the collection without sorting. InOut: Scope Name Type Comment Return AddElementWithoutSorting COLLECTION_ERROR Input itfElement IElement The element to add.
SortedList.ContainsElement (METH) ¶ METHOD ContainsElement : COLLECTION_ERROR Check if the collection contains the element itfElement . InOut: Scope Name Type Comment Return ContainsElement COLLECTION_ERROR Input itfElement IElement The element to check Output xResult BOOL True if the collection contains itfElement
SortedList.ContainsValue (METH) ¶ METHOD ContainsValue : COLLECTION_ERROR Checks if the collection contains the value of itfElement . This method calls ElementEquals of IElement to compare the element values. InOut: Scope Name Type Comment Return ContainsValue COLLECTION_ERROR Input itfElement IElement The element to check Output xResult BOOL True if the collection contains the value of itfElement
SortedList.CountElements (METH) ¶ METHOD CountElements : UDINT Returns the number of elements. InOut: Scope Name Type Return CountElements UDINT
SortedList.ElementCompareTo (METH) ¶ METHOD ElementCompareTo : INT Compares this element with itfElement . Returns 0 if the elements are equal, < 0 if the element is less than itfElement , > 0 if the element is greater than itfElement . InOut: Scope Name Type Comment Return ElementCompareTo INT Input itfElement IElement The element to compare