alias_api.pick_layers

alias_api.pick_layers(*args, **kwargs)

Overloaded function.

  1. pick_layers(layers: collections.abc.Sequence[alias_api.AlLayer]) -> int

    Pick the layers.

    param layers

    The layers to pick.

    type layers

    List[AlLayer]

    return

    The status code result of the operation. Success - everything was successfully picked. Failure - not all locators were successfully picked.

    rtype

    int(AlStatusCode)

  2. pick_layers(layer_names: collections.abc.Sequence[str]) -> int

    Pick the layers with the given names.

    param layer_names

    The names of the layers to pick.

    type layer_names

    List[str]

    return

    The status code result of the operation. Success - everything was successfully picked. Failure - not all locators were successfully picked.

    rtype

    int(AlStatusCode)