Item

SCPI Command :

DISPlay[:WINDow<n>]:TABLe:ITEM
Commands in total: 1
Subgroups: 0
Direct child commands: 1
class ItemStruct[source]

Response structure. Fields:

  • 1 Items: enums.NoiseFigureResult: No parameter help available

  • 2 State: bool: ON | OFF | 0 | 1 OFF | 0 Item is displayed in ‘Result Summary’. ON | 1 Item is not displayed in ‘Result Summary’.

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

Defines which items are displayed in the ‘Result Summary’ (see ‘Result Summary Detailed’ and ‘Result Summary Global’) . Note that the results are always calculated, regardless of their visibility in the ‘Result Summary’.

Parameters:

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

Returns:

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

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

Defines which items are displayed in the ‘Result Summary’ (see ‘Result Summary Detailed’ and ‘Result Summary Global’) . Note that the results are always calculated, regardless of their visibility in the ‘Result Summary’.

Parameters:
  • state – ON | OFF | 0 | 1 OFF | 0 Item is displayed in ‘Result Summary’. ON | 1 Item is not displayed in ‘Result Summary’.

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