Style
SCPI Command :
CURSor<*>:STYLe
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(cursor=Cursor.Default) CursorStyle[source]
# CURSor<*>:STYLe value: enums.CursorStyle = driver.cursor.style.get(cursor = repcap.Cursor.Default)
Defines how the cursor is displayed in the diagram.
- Parameters:
cursor – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cursor’)
- Returns:
style: LINes | LRHombus | VLRHombus | RHOMbus
LINes: The cursors are displayed as lines.
LRHombus: The cursors are displayed as lines. The intersections of the cursors with the waveforms are displayed by rhombus-shaped points.
VLRHombus: The cursors are displayed only as vertical lines. The intersections of the cursors with the waveforms are displayed by rhombus-shaped points.
RHOMbus: The intersections of the cursors with the waveforms are displayed by rhombus-shaped points.
- set(style: CursorStyle, cursor=Cursor.Default) None[source]
# CURSor<*>:STYLe driver.cursor.style.set(style = enums.CursorStyle.LINes, cursor = repcap.Cursor.Default)
Defines how the cursor is displayed in the diagram.
- Parameters:
style –
LINes | LRHombus | VLRHombus | RHOMbus
LINes: The cursors are displayed as lines.
LRHombus: The cursors are displayed as lines. The intersections of the cursors with the waveforms are displayed by rhombus-shaped points.
VLRHombus: The cursors are displayed only as vertical lines. The intersections of the cursors with the waveforms are displayed by rhombus-shaped points.
RHOMbus: The intersections of the cursors with the waveforms are displayed by rhombus-shaped points.
cursor – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cursor’)