AddCoupled
SCPI Command :
LAYout:ZOOM:ADDCoupled
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(new_zoom_name: str) str[source]
# LAYout:ZOOM:ADDCoupled value: str = driver.layout.zoom.addCoupled.get(new_zoom_name = 'abc')
Creates a new zoom diagram based on the settings of an existing zoom area for the same source. For numerical values, the input of a unit is not supported for this command.
- Parameters:
new_zoom_name – Defines the name of the new zoom diagram.
- Returns:
new_zoom_name: Defines the name of the new zoom diagram.
- set(zoom_name: str, xoffset: int, yoffset: int, new_zoom_name: str) None[source]
# LAYout:ZOOM:ADDCoupled driver.layout.zoom.addCoupled.set(zoom_name = 'abc', xoffset = 1, yoffset = 1, new_zoom_name = 'abc')
Creates a new zoom diagram based on the settings of an existing zoom area for the same source. For numerical values, the input of a unit is not supported for this command.
- Parameters:
zoom_name – Defines the name of the zoom diagram to be copied.
xoffset – Defines an offset to the existing zoom area in x direction.
yoffset – Defines an offset to the existing zoom area in y direction.
new_zoom_name – Defines the name of the new zoom diagram.