Text

SCPI Command :

DISPlay[:WINDow<n>]:TRACe<t>:LABel:TEXT
class TextCls[source]

Text commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get(window=Window.Default, trace=Trace.Default) str[source]
# SCPI: DISPlay[:WINDow<n>]:TRACe<t>:LABel:TEXT
value: str = driver.display.window.trace.label.text.get(window = repcap.Window.Default, trace = repcap.Trace.Default)

Defines a descriptive label for the specified trace instead of the default ‘Trace <x>’ label. Enable the label using the method RsFsw.Display.Window.Trace.Label.State.set command. You can only configure labels for active traces and for traces whose ‘State’ is enabled.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)

param trace

optional repeated capability selector. Default value: Tr1 (settable in the interface ‘Trace’)

return

text: String containing the trace label.

set(text: str, window=Window.Default, trace=Trace.Default) None[source]
# SCPI: DISPlay[:WINDow<n>]:TRACe<t>:LABel:TEXT
driver.display.window.trace.label.text.set(text = 'abc', window = repcap.Window.Default, trace = repcap.Trace.Default)

Defines a descriptive label for the specified trace instead of the default ‘Trace <x>’ label. Enable the label using the method RsFsw.Display.Window.Trace.Label.State.set command. You can only configure labels for active traces and for traces whose ‘State’ is enabled.

param text

String containing the trace label.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)

param trace

optional repeated capability selector. Default value: Tr1 (settable in the interface ‘Trace’)