Text

SCPI Commands

DISPlay:WINDow:TEXT:DATA
DISPlay:WINDow:TEXT:CLEar
class TextCls[source]

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

clear() None[source]
# SCPI: DISPlay[:WINDow]:TEXT:CLEar
driver.display.window.text.clear()

Closes a user defined text message on the display. To create an own message, use command method RsLcx.Display.Window.Text. data.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: DISPlay[:WINDow]:TEXT:CLEar
driver.display.window.text.clear_with_opc()

Closes a user defined text message on the display. To create an own message, use command method RsLcx.Display.Window.Text. data.

Same as clear, but waits for the operation to complete before continuing further. Use the RsLcx.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

set_data(message: str) None[source]
# SCPI: DISPlay[:WINDow]:TEXT[:DATA]
driver.display.window.text.set_data(message = r1)

Enables you to post a text message on the display. To close user defined message, use command method RsLcx.Display.Window. Text.clear.

param message:

Text message for display.