Display

SCPI Commands :

SYSTem:BASE:DISPlay:MWINdow
SYSTem:BASE:DISPlay:COLorset
SYSTem:BASE:DISPlay:FONTset
SYSTem:BASE:DISPlay:ROLLkeymode
SYSTem:BASE:DISPlay:LANGuage
SYSTem:DISPlay:UPDate
class DisplayCls[source]

Display commands group definition. 8 total commands, 1 Subgroups, 6 group commands

get_color_set() ColorSet[source]
# SCPI: SYSTem:BASE:DISPlay:COLorset
value: enums.ColorSet = driver.system.display.get_color_set()

No command help available

return:

color_set: No help available

get_font_set() FontType[source]
# SCPI: SYSTem:BASE:DISPlay:FONTset
value: enums.FontType = driver.system.display.get_font_set()

Selects the font size for the GUI labels.

return:

fonset: No help available

get_language() DisplayLanguage[source]
# SCPI: SYSTem:BASE:DISPlay:LANGuage
value: enums.DisplayLanguage = driver.system.display.get_language()

No command help available

return:

language: No help available

get_mwindow() bool[source]
# SCPI: SYSTem:BASE:DISPlay:MWINdow
value: bool = driver.system.display.get_mwindow()

Enables or disables the multiple-window mode of the graphical user interface.

return:

on_off: No help available

get_rollkey_mode() RollkeyMode[source]
# SCPI: SYSTem:BASE:DISPlay:ROLLkeymode
value: enums.RollkeyMode = driver.system.display.get_rollkey_mode()

No command help available

return:

rollkey_mode: No help available

get_update() bool[source]
# SCPI: SYSTem:DISPlay:UPDate
value: bool = driver.system.display.get_update()

Defines whether the display is updated or not while the instrument is in the remote state. If the display update is switched off, the normal GUI is replaced by a static image while the instrument is in the remote state. Switching off the display can speed up the measurement and is the recommended state. See also ‘Using the display during remote control’

return:

display_update: No help available

set_color_set(color_set: ColorSet) None[source]
# SCPI: SYSTem:BASE:DISPlay:COLorset
driver.system.display.set_color_set(color_set = enums.ColorSet.DEF)

No command help available

param color_set:

No help available

set_font_set(fonset: FontType) None[source]
# SCPI: SYSTem:BASE:DISPlay:FONTset
driver.system.display.set_font_set(fonset = enums.FontType.DEF)

Selects the font size for the GUI labels.

param fonset:

DEF | LRG DEF: Small fonts LRG: Large fonts

set_language(language: DisplayLanguage) None[source]
# SCPI: SYSTem:BASE:DISPlay:LANGuage
driver.system.display.set_language(language = enums.DisplayLanguage.AR)

No command help available

param language:

No help available

set_mwindow(on_off: bool) None[source]
# SCPI: SYSTem:BASE:DISPlay:MWINdow
driver.system.display.set_mwindow(on_off = False)

Enables or disables the multiple-window mode of the graphical user interface.

param on_off:

ON | OFF | 1 | 0 ON | 1: multiple-window mode OFF | 0: single-window mode

set_rollkey_mode(rollkey_mode: RollkeyMode) None[source]
# SCPI: SYSTem:BASE:DISPlay:ROLLkeymode
driver.system.display.set_rollkey_mode(rollkey_mode = enums.RollkeyMode.CURSors)

No command help available

param rollkey_mode:

No help available

set_update(display_update: bool) None[source]
# SCPI: SYSTem:DISPlay:UPDate
driver.system.display.set_update(display_update = False)

Defines whether the display is updated or not while the instrument is in the remote state. If the display update is switched off, the normal GUI is replaced by a static image while the instrument is in the remote state. Switching off the display can speed up the measurement and is the recommended state. See also ‘Using the display during remote control’

param display_update:

ON | OFF | 1 | 0 ON | 1: Display is shown and updated during remote control. OFF | 0: Display shows static image during remote control.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.system.display.clone()

Subgroups