== List of ActionInsertModes ==
Code
enum ActionInsertMode
{
ACTION_APPEND, // Attach action to the running ActionList
ACTION_INSERT, // Attach action to the running ActionList at the current position
ACTION_INSERTAFTERFIRST, // Attach action to the running ActionList after the first position
ACTION_INSERTBEFORELAST, // Attach action to the running ActionList before the last position
ACTION_NEWLIST, // Create new ActionList and execute the action
ACTION_REPLACEFIRST, // Replace the current action by the defined action
};