State
SCPI Command :
DISPlay:SIGNal:LABel:STATe
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(label_id: str, source: SignalSource) bool[source]
# DISPlay:SIGNal:LABel:STATe value: bool = driver.display.signal.label.state.get(label_id = 'abc', source = enums.SignalSource.AJ1)
Displays or hides a single label that is identified by the signal source and label ID.
- Parameters:
label_id – String with the label identifier.
source – See method
RsRtx.display.signal.label.add().
- Returns:
state: ON: shows the label on the screen. method
RsRtx.display.signal.label.show.set()must be set to ON for the source.
- set(label_id: str, source: SignalSource, state: bool) None[source]
# DISPlay:SIGNal:LABel:STATe driver.display.signal.label.state.set(label_id = 'abc', source = enums.SignalSource.AJ1, state = False)
Displays or hides a single label that is identified by the signal source and label ID.
- Parameters:
label_id – String with the label identifier.
source – See method
RsRtx.display.signal.label.add().state – ON: shows the label on the screen. method
RsRtx.display.signal.label.show.set()must be set to ON for the source.