Item

SCPI Commands

DISPlay:WINDow<Window>:TABLe:ITEM
class ItemCls[source]

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

class ItemStruct[source]

Response structure. Fields:

  • Items: enums.NoiseFigureResult: NOISe | GAIN | TEMPerature | YFACtor | ENR | PHOT | PCOLd | CYFactor | CPHot | CPCold | NUNCertainty For a list of possible parameter values (table items) see the parameter description of the [CMDLINK: TRACen[:DATA]? CMDLINK] command.

  • State: bool: ON | OFF | 1 | 0

get(window=Window.Default) ItemStruct[source]
# SCPI: DISPlay[:WINDow<n>]:TABLe:ITEM
value: ItemStruct = driver.applications.k30NoiseFigure.display.window.table.item.get(window = repcap.Window.Default)

This command selects the items displayed in the Result Table.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)

return

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

set(items: NoiseFigureResult, state: bool, window=Window.Default) None[source]
# SCPI: DISPlay[:WINDow<n>]:TABLe:ITEM
driver.applications.k30NoiseFigure.display.window.table.item.set(items = enums.NoiseFigureResult.CPCold, state = False, window = repcap.Window.Default)

This command selects the items displayed in the Result Table.

param items

NOISe | GAIN | TEMPerature | YFACtor | ENR | PHOT | PCOLd | CYFactor | CPHot | CPCold | NUNCertainty For a list of possible parameter values (table items) see the parameter description of the method RsFswp.Trace.Data.get_ command.

param state

ON | OFF | 1 | 0

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)