Stack.ElementIterator (METH) ¶ METHOD ElementIterator : COLLECTION_ERROR Returns an iterator over all elements. InOut: Scope Name Type Return ElementIterator COLLECTION_ERROR Input itfIterator IIterator
Stack.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
Stack.Peek (METH) ¶ METHOD Peek : COLLECTION_ERROR Get the head element of the stack. The element will not be removed. InOut: Scope Name Type Comment Return Peek COLLECTION_ERROR Output itfElement IElement The top level element of the stack.
Stack.Pop (METH) ¶ METHOD Pop : COLLECTION_ERROR Get the head of the stack. The element will be removed from the stack. InOut: Scope Name Type Comment Return Pop COLLECTION_ERROR Output itfElement IElement The top level element of the stack.
SortedListFactory.prvInstPoolExtendsFactor (PROP) ¶ PROPERTY prvInstPoolExtendsFactor : USINT
SortedListFactory.prvInstSize (PROP) ¶ PROPERTY prvInstSize : CAA.SIZE
Stack.AddElement (METH) ¶ METHOD AddElement : COLLECTION_ERROR Add the element itfElement to the collection. InOut: Scope Name Type Comment Return AddElement COLLECTION_ERROR Input itfElement IElement The element to add.
Stack.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
Stack.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
Stack.CountElements (METH) ¶ METHOD CountElements : UDINT Returns the number of elements. InOut: Scope Name Type Return CountElements UDINT