set_execution_options#
- abstractmethod Node.set_execution_options(value: ExecutionOption) None#
 Set execution options.
- Parameters:
 - value
ExecutionOption Execution options of the
Node. More execution options can be combined using the bitwise operations.
- value
 - Raises:
 OslCommunicationErrorRaised when an error occurs while communicating with the server.
OslCommandErrorRaised when a command or query fails.
TimeoutErrorRaised when the timeout float value expires.
Examples
Combination of more execution options using the bitwise operation.
>>> ... >>> node.set_execution_options( ExecutionOption.ACTIVE | ExecutionOption.STARTING_POINT )