X<Xaxis>

SCPI Command :

CURSor<*>:LABel:X<*>
Commands in total: 1
Subgroups: 0
Direct child commands: 1

Repeated Capability Setting:

# Range: Nr1 .. Nr2

driver.cursor.label.x.repcap_xaxis_set(repcap.Xaxis.Nr1)
get(cursor=Cursor.Default, xaxis=Xaxis.Default) str[source]
# CURSor<*>:LABel:X<*>
value: str = driver.cursor.label.x.get(cursor = repcap.Cursor.Default, xaxis = repcap.Xaxis.Default)

Defines a label to be displayed with the vertical cursors. X1 is the left cursor line, and X2 the right one. By default, the cursors are labeled as Cu1.X1, Cu1.X2, Cu2.X1, Cu2.X2, Cu3.X1, Cu3.X2, Cu4.X1, Cu4.X2.

Parameters:
  • cursor – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cursor’)

  • xaxis – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘X’)

Returns:

name: String with the cursor label

set(name: str, cursor=Cursor.Default, xaxis=Xaxis.Default) None[source]
# CURSor<*>:LABel:X<*>
driver.cursor.label.x.set(name = 'abc', cursor = repcap.Cursor.Default, xaxis = repcap.Xaxis.Default)

Defines a label to be displayed with the vertical cursors. X1 is the left cursor line, and X2 the right one. By default, the cursors are labeled as Cu1.X1, Cu1.X2, Cu2.X1, Cu2.X2, Cu3.X1, Cu3.X2, Cu4.X1, Cu4.X2.

Parameters:
  • name – String with the cursor label

  • cursor – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cursor’)

  • xaxis – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘X’)

Cloning the Group

# Create a copy of the original group, that exists independently
x_copy = driver.cursor.label.x.clone()