Position

SCPI Command :

LAYout:ZOOM:VERTical:RELative:POSition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(diagram_group: str, zoom_diagram: str) float[source]
# LAYout:ZOOM:VERTical:RELative:POSition
value: float = driver.layout.zoom.vertical.relative.position.get(diagram_group = 'abc', zoom_diagram = 'abc')

Defines the y-value of the centerpoint of the zoom area.

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

  • zoom_diagram – Name of the zoom diagram

Returns:

rel_posi: Relative position of the centerpoint (y-value)

set(diagram_group: str, zoom_diagram: str, rel_posi: float) None[source]
# LAYout:ZOOM:VERTical:RELative:POSition
driver.layout.zoom.vertical.relative.position.set(diagram_group = 'abc', zoom_diagram = 'abc', rel_posi = 1.0)

Defines the y-value of the centerpoint of the zoom area.

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

  • zoom_diagram – Name of the zoom diagram

  • rel_posi – Relative position of the centerpoint (y-value)