py_canoe.core.ui.Ui
The UI object represents the user interface in CANoe.
Source code in src\py_canoe\core\ui.py
12 13 14 | |
write
property
Returns a Write object that allows writing text to the user interface write window.
activate_desktop(desktop_name)
Activate a specific UI desktop window by name. Returns True if successful, False otherwise.
Source code in src\py_canoe\core\ui.py
29 30 31 32 33 34 35 36 37 | |
create_desktop(desktop_name)
Create a new UI desktop window with the specified name. Returns True if successful, False otherwise.
Source code in src\py_canoe\core\ui.py
39 40 41 42 43 44 45 46 47 48 49 50 51 | |
get_command_enabled(command)
Get the availability of a command on the user interface.
Source code in src\py_canoe\core\ui.py
16 17 18 | |
open_baudrate_dialog()
Open the UI Baudrate Dialog. Returns True if successful, False otherwise.
Source code in src\py_canoe\core\ui.py
53 54 55 56 57 58 59 60 61 | |
set_command_enabled(command, enabled)
Set the availability of a command on the user interface.
Source code in src\py_canoe\core\ui.py
20 21 22 | |