Display

SCPI Command:

CONFigure:DISPlay:TABSplit
class DisplayCls[source]

Display commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get_tab_split() TabSplit[source]
# SCPI: CONFigure:DISPlay:TABSplit
value: enums.TabSplit = driver.configure.display.get_tab_split()

Configures the tab mode of the GUI.

return:

tab_split: TAB | SPLit TAB Merged mode, displaying a single tab at a time SPLit Split mode, displaying the generator tab on the left and the measurement tabs on the right

set_tab_split(tab_split: TabSplit) None[source]
# SCPI: CONFigure:DISPlay:TABSplit
driver.configure.display.set_tab_split(tab_split = enums.TabSplit.SPLit)

Configures the tab mode of the GUI.

param tab_split:

TAB | SPLit TAB Merged mode, displaying a single tab at a time SPLit Split mode, displaying the generator tab on the left and the measurement tabs on the right

Cloning the Group

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

Subgroups