Mode

SCPI Command :

LAYout:ZOOM:HORZ:MODE
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(diagram_group: str, zoom_diagram: str) PositionMode[source]
# LAYout:ZOOM:HORZ:MODE
value: enums.PositionMode = driver.layout.zoom.horz.mode.get(diagram_group = 'abc', zoom_diagram = 'abc')

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

Parameters:
  • diagram_group – Name of the diagram on which the zoom area is based.

  • zoom_diagram – Name of the zoom diagram

Returns:

mode: Mode used to specify the x-axis values of the zoom area.

set(diagram_group: str, zoom_diagram: str, mode: PositionMode) None[source]
# LAYout:ZOOM:HORZ:MODE
driver.layout.zoom.horz.mode.set(diagram_group = 'abc', zoom_diagram = 'abc', mode = enums.PositionMode.ABS)

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

Parameters:
  • diagram_group – Name of the diagram on which the zoom area is based.

  • zoom_diagram – Name of the zoom diagram

  • mode – Mode used to specify the x-axis values of the zoom area.