Skip to main content

getApplier

Short summary

A method to get an applier at the given index.

Return: CNM_ReturnTypes.ExecutionState

Parameters

NameTypeCommentKind
indexUDINT-input

Code

Declaration

METHOD getApplier : CNM_CollectionInterfaces.IApplier
VAR_INPUT
index :UDINT;
END_VAR
VAR
obj :CNM_AbstractObject.IObject;
END_VAR

Implementation

THIS^.myList.getObjectAt(index := index, object => obj);
__TRY
__QUERYINTERFACE(obj, getApplier);
__CATCH
;
__ENDTRY