Y<Yaxis>
SCPI Command :
CURSor<*>:LABel:Y<*>
- Commands in total: 1Subgroups: 0Direct child commands: 1
Repeated Capability Setting:
# Range: Nr1 .. Nr2 driver.cursor.label.y.repcap_yaxis_set(repcap.Yaxis.Nr1)
- get(cursor=Cursor.Default, yaxis=Yaxis.Default) str[source]
# CURSor<*>:LABel:Y<*> value: str = driver.cursor.label.y.get(cursor = repcap.Cursor.Default, yaxis = repcap.Yaxis.Default)
Defines a label to be displayed with the vertical cursors. Y1 is the lower cursor line, and Y2 the upper one. By default, the cursors are labeled as Cu1.Y1, Cu1.Y2, Cu2.Y1, Cu2.Y2, Cu3.Y1, Cu3.Y2, Cu4.Y1, Cu4.Y2.
- Parameters:
cursor – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cursor’)
yaxis – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Y’)
- Returns:
name: String with the cursor label
- set(name: str, cursor=Cursor.Default, yaxis=Yaxis.Default) None[source]
# CURSor<*>:LABel:Y<*> driver.cursor.label.y.set(name = 'abc', cursor = repcap.Cursor.Default, yaxis = repcap.Yaxis.Default)
Defines a label to be displayed with the vertical cursors. Y1 is the lower cursor line, and Y2 the upper one. By default, the cursors are labeled as Cu1.Y1, Cu1.Y2, Cu2.Y1, Cu2.Y2, Cu3.Y1, Cu3.Y2, Cu4.Y1, Cu4.Y2.
- Parameters:
name – String with the cursor label
cursor – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cursor’)
yaxis – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Y’)
Cloning the Group
# Create a copy of the original group, that exists independently
y_copy = driver.cursor.label.y.clone()