Position

SCPI Command :

DISPlay:SIGNal:LABel:HORizontal:RELative:POSition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(label_id: str, source: SignalSource) float[source]
# DISPlay:SIGNal:LABel:HORizontal:RELative:POSition
value: float = driver.display.signal.label.horizontal.relative.position.get(label_id = 'abc', source = enums.SignalSource.AJ1)

Modifies or queries the relative horizontal and vertical positiions of the specified label if method RsRtx.display.signal.label.posMode.set() is set to REL.

Parameters:
  • label_id – String with the label identifier.

  • source – All waveforms that can be displayed, see method RsRtx.display.signal.label.add()

Returns:

position: Position in percent of the screen counting from the upper left corner.

set(label_id: str, source: SignalSource, position: float) None[source]
# DISPlay:SIGNal:LABel:HORizontal:RELative:POSition
driver.display.signal.label.horizontal.relative.position.set(label_id = 'abc', source = enums.SignalSource.AJ1, position = 1.0)

Modifies or queries the relative horizontal and vertical positiions of the specified label if method RsRtx.display.signal.label.posMode.set() is set to REL.

Parameters:
  • label_id – String with the label identifier.

  • source – All waveforms that can be displayed, see method RsRtx.display.signal.label.add()

  • position – Position in percent of the screen counting from the upper left corner.