Chartbreaker
    Preparing search index...

    Variable ControllerEQueryFlagsConst

    ControllerEQueryFlags: {
        ABSOLUTE_VALUES: 1;
        INVERT_FILTER: 16;
        MATCH_ALL: 12;
        MATCH_ALL_PARENTS: 8;
        MATCH_SELF: 4;
        NONE: 0;
        UNMERGE: 2;
    }

    An enum containing various bit flags to modify query behaviour of methods in Controller

    Functions using this enum include =

    • Controller.getObject
    • Controller.getObjects
    • Controller.enumerateObjects
    • Controller.moveObject

    Type Declaration

    • ReadonlyABSOLUTE_VALUES: 1

      interpret numbers as absolute indices instead of as relative values

    • ReadonlyINVERT_FILTER: 16

      inverts the filter so that it retrieves only objects NOT matching the specified properties

    • ReadonlyMATCH_ALL: 12

      combination of MATCH_ALL_PARENTS and MATCH_SELF

    • ReadonlyMATCH_ALL_PARENTS: 8

      match all parents in the hierarchy, instead of just the direct parent

    • ReadonlyMATCH_SELF: 4

      also match object itself, instead of just parent(s)

    • ReadonlyNONE: 0

      no changes

    • ReadonlyUNMERGE: 2

      always move objects to newly created charts inserted at target position only works when target chart is specified numerically