Value

SCPI Command :

DISPlay:ANNotation:PLINe<*>[:VALue]
Commands in total: 1
Subgroups: 0
Direct child commands: 1
class ValueStruct[source]

Response structure. Fields:

  • 1 X_1: float: Horizontal position of the start point of the new line

  • 2 Y_1: float: Vertical position of the start point of the new line

  • 3 X_2: float: Horizontal position of the endpoint of the new line

  • 4 Y_2: float: Vertical position of the endpoint of the new line

  • 5 Xn: List[float]: No parameter help available

get(annotation=Annotation.Default) ValueStruct[source]
# DISPlay:ANNotation:PLINe<*>[:VALue]
value: ValueStruct = driver.display.annotation.pline.value.get(annotation = repcap.Annotation.Default)

Adds a new draw annotation, or replaces the annotation if it already exists. If no parameters are defined, the default values are used. All parameters are given in % of the screen.

Parameters:

annotation – optional repeated capability selector. Default value: Ix1 (settable in the interface ‘Annotation’)

Returns:

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

set(x_1: float, y_1: float, x_2: float, y_2: float, xn: List[float] = None, annotation=Annotation.Default) None[source]
# DISPlay:ANNotation:PLINe<*>[:VALue]
driver.display.annotation.pline.value.set(x_1 = 1.0, y_1 = 1.0, x_2 = 1.0, y_2 = 1.0, xn = [1.1, 2.2, 3.3], annotation = repcap.Annotation.Default)

Adds a new draw annotation, or replaces the annotation if it already exists. If no parameters are defined, the default values are used. All parameters are given in % of the screen.

Parameters:
  • x_1 – Horizontal position of the start point of the new line

  • y_1 – Vertical position of the start point of the new line

  • x_2 – Horizontal position of the endpoint of the new line

  • y_2 – Vertical position of the endpoint of the new line

  • annotation – optional repeated capability selector. Default value: Ix1 (settable in the interface ‘Annotation’)