Select

SCPI Command:

DISPlay:GPRF:MEASurement<Instance>:SPECtrum:APPLication:SELect
class SelectCls[source]

Select commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class SelectStruct[source]

Response structure. Fields:

  • Application: enums.SpecAnApp: FREQ | ZERO Show ‘Frequency Sweep’ subtab or ‘Zero Span’ subtab

  • Fullscreen: bool: OFF | ON OFF: show result diagram with default size ON: maximize result diagram

get() SelectStruct[source]
# SCPI: DISPlay:GPRF:MEASurement<Instance>:SPECtrum:APPLication:SELect
value: SelectStruct = driver.display.gprfMeasurement.spectrum.application.select.get()

Configures the display of the ‘Spectrum Analyzer’ tab.

return:

structure: for return value, see the help for SelectStruct structure arguments.

set(application: SpecAnApp, fullscreen: bool = None) None[source]
# SCPI: DISPlay:GPRF:MEASurement<Instance>:SPECtrum:APPLication:SELect
driver.display.gprfMeasurement.spectrum.application.select.set(application = enums.SpecAnApp.FREQ, fullscreen = False)

Configures the display of the ‘Spectrum Analyzer’ tab.

param application:

FREQ | ZERO Show ‘Frequency Sweep’ subtab or ‘Zero Span’ subtab

param fullscreen:

OFF | ON OFF: show result diagram with default size ON: maximize result diagram