/** * Add method when creating a container * - Append will append to the last children in list * - Insert will always place it at the begining * - Replace will remove the selected container and insert a new one * (default: Append) */ export enum AddMethod { Append, Insert, Replace, ReplaceParent }