Area

SCPI Command :

DISPlay[:WINDow<n>][:SUBWindow<w>]:ZOOM:AREA
class AreaCls[source]

Area commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class AreaStruct[source]

Response structure. Fields:

  • X_1: float: Diagram coordinates in % of the complete diagram that define the zoom area. The lower left corner is the origin of coordinate system. The upper right corner is the end point of the system. Range: 0 to 100, Unit: PCT

  • Y_1: float: Diagram coordinates in % of the complete diagram that define the zoom area. The lower left corner is the origin of coordinate system. The upper right corner is the end point of the system. Range: 0 to 100, Unit: PCT

  • X_2: float: Diagram coordinates in % of the complete diagram that define the zoom area. The lower left corner is the origin of coordinate system. The upper right corner is the end point of the system. Range: 0 to 100, Unit: PCT

  • Y_2: float: Diagram coordinates in % of the complete diagram that define the zoom area. The lower left corner is the origin of coordinate system. The upper right corner is the end point of the system. Range: 0 to 100, Unit: PCT

get(window=Window.Default, subWindow=SubWindow.Default) AreaStruct[source]
# SCPI: DISPlay[:WINDow<n>][:SUBWindow<w>]:ZOOM:AREA
value: AreaStruct = driver.display.window.subwindow.zoom.area.get(window = repcap.Window.Default, subWindow = repcap.SubWindow.Default)

Defines the zoom area. To define a zoom area, you first have to turn the zoom on.

param window

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

param subWindow

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

return

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

set(x_1: float, y_1: float, x_2: float, y_2: float, window=Window.Default, subWindow=SubWindow.Default) None[source]
# SCPI: DISPlay[:WINDow<n>][:SUBWindow<w>]:ZOOM:AREA
driver.display.window.subwindow.zoom.area.set(x_1 = 1.0, y_1 = 1.0, x_2 = 1.0, y_2 = 1.0, window = repcap.Window.Default, subWindow = repcap.SubWindow.Default)

Defines the zoom area. To define a zoom area, you first have to turn the zoom on.

param x_1

Diagram coordinates in % of the complete diagram that define the zoom area. The lower left corner is the origin of coordinate system. The upper right corner is the end point of the system. Range: 0 to 100, Unit: PCT

param y_1

Diagram coordinates in % of the complete diagram that define the zoom area. The lower left corner is the origin of coordinate system. The upper right corner is the end point of the system. Range: 0 to 100, Unit: PCT

param x_2

Diagram coordinates in % of the complete diagram that define the zoom area. The lower left corner is the origin of coordinate system. The upper right corner is the end point of the system. Range: 0 to 100, Unit: PCT

param y_2

Diagram coordinates in % of the complete diagram that define the zoom area. The lower left corner is the origin of coordinate system. The upper right corner is the end point of the system. Range: 0 to 100, Unit: PCT

param window

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

param subWindow

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