Label

SCPI Command :

CURSor<*>:VERTical<*>:LABel
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(cursor=Cursor.Default, vertical=Vertical.Default) str[source]
# CURSor<*>:VERTical<*>:LABel
value: str = driver.cursor.vertical.label.get(cursor = repcap.Cursor.Default, vertical = repcap.Vertical.Default)

Defines the label to be displayed with the vertical cursor lines. By default, the cursors are labeled as Cu1.1, Cu1. 2, Cu2.1, …

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

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

Returns:

label: String with the cursor label

set(label: str, cursor=Cursor.Default, vertical=Vertical.Default) None[source]
# CURSor<*>:VERTical<*>:LABel
driver.cursor.vertical.label.set(label = 'abc', cursor = repcap.Cursor.Default, vertical = repcap.Vertical.Default)

Defines the label to be displayed with the vertical cursor lines. By default, the cursors are labeled as Cu1.1, Cu1. 2, Cu2.1, …

Parameters:
  • label – String with the cursor label

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

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