andThen
Short summary
Method to append another Applier to the chained applier.
Return: ``THIS^```IChainedApplier`
- Return type: CNM_CollectionInterfaces.IApplierChainContinue
Parameters
| Name | Type | Comment | Kind |
|---|---|---|---|
| applier | CNM_CollectionInterfaces.IApplier | - | input |
Code
Declaration
METHOD andThen : CNM_CollectionInterfaces.IApplierChainContinue
VAR_INPUT
applier :CNM_CollectionInterfaces.IApplier;
END_VAR
Implementation
THIS^.applierList.append(applier);
andThen := THIS^;