alias_api.ungroup

alias_api.ungroup(*args, **kwargs)

Overloaded function.

  1. ungroup(node: alias_api.AlDagNode, ungroup_option: alias_api.UngroupOption, preserve_position: bool = True) -> int

    Ungroup the specified group nodes.

    The specified group node will be removed from the DAG, and all its children will be moved to the parent of the group node.

    return

    The status code result of the ungroup operation.

    rtype

    int(AlStatusCode)

  2. ungroup(node: collections.abc.Sequence[alias_api.AlDagNode], ungroup_option: alias_api.UngroupOption, preserve_position: bool = True) -> int

    Ungroup the specified group nodes.

    The specified group node will be removed from the DAG, and all its children will be moved to the parent of the group node.

    return

    The status code result of the ungroup operation.

    rtype

    int(AlStatusCode)