Mode

SCPI Command :

LAYout<*>:ZOOM<*>:VERTical:MODE
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(layout=Layout.Default, zoom=Zoom.Default) AbsRel[source]
# LAYout<*>:ZOOM<*>:VERTical:MODE
value: enums.AbsRel = driver.layout.zoom.vertical.mode.get(layout = repcap.Layout.Default, zoom = repcap.Zoom.Default)

Defines if absolute or relative values are used to specify the y-axis values. Since the zoom area refers to the active signal, relative values ensure that the zoom area remains the same.

Parameters:
  • layout – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Layout’)

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

Returns:

mode: ABS | REL

set(mode: AbsRel, layout=Layout.Default, zoom=Zoom.Default) None[source]
# LAYout<*>:ZOOM<*>:VERTical:MODE
driver.layout.zoom.vertical.mode.set(mode = enums.AbsRel.ABS, layout = repcap.Layout.Default, zoom = repcap.Zoom.Default)

Defines if absolute or relative values are used to specify the y-axis values. Since the zoom area refers to the active signal, relative values ensure that the zoom area remains the same.

Parameters:
  • mode – ABS | REL

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

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