set_execution_options#
- abstractmethod RootSystem.set_execution_options(value: ExecutionOption) None#
- Set execution options. - Parameters:
- valueExecutionOption
- Execution options of the - Node. More execution options can be combined using the bitwise operations.
 
- value
- Raises:
- OslCommunicationError
- Raised when an error occurs while communicating with the server. 
- OslCommandError
- Raised when a command or query fails. 
- TimeoutError
- Raised 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 ) 
 
    