PosMode

SCPI Command :

DISPlay:SIGNal:LABel:POSMode
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(source: SignalSource) PositionMode[source]
# DISPlay:SIGNal:LABel:POSMode
value: enums.PositionMode = driver.display.signal.label.posMode.get(source = enums.SignalSource.AJ1)

Modifies or queries the position mode: either relative to the diagram or with absolute values according to the units of the waveform. The position mode applies to all labels of the selected source. For different sources, different position modes can be selected.

Parameters:

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

Returns:

position_mode: ABS | REL

  • ABS: Position in time and voltage values, or in other units depending on the waveform character. Absolute positions move with the waveform display when the scales, the vertical position or offset, or the reference point are changed.Use DISPlay:SIGNal:LABel:HORizontal:ABSolute:POSition and DISPlay:SIGNal:LABel:HORizontal:RELative:POSition to set the position.

  • REL: Fixed label position in percent of the screen counting from the upper left corner.Use DISPlay:SIGNal:LABel:HORizontal:RELative:POSition and DISPlay:SIGNal:LABel:VERTical:RELative:POSition to set the position.

set(source: SignalSource, position_mode: PositionMode) None[source]
# DISPlay:SIGNal:LABel:POSMode
driver.display.signal.label.posMode.set(source = enums.SignalSource.AJ1, position_mode = enums.PositionMode.ABS)

Modifies or queries the position mode: either relative to the diagram or with absolute values according to the units of the waveform. The position mode applies to all labels of the selected source. For different sources, different position modes can be selected.

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

  • position_mode

    ABS | REL

    • ABS: Position in time and voltage values, or in other units depending on the waveform character. Absolute positions move with the waveform display when the scales, the vertical position or offset, or the reference point are changed.Use DISPlay:SIGNal:LABel:HORizontal:ABSolute:POSition and DISPlay:SIGNal:LABel:HORizontal:RELative:POSition to set the position.

    • REL: Fixed label position in percent of the screen counting from the upper left corner.Use DISPlay:SIGNal:LABel:HORizontal:RELative:POSition and DISPlay:SIGNal:LABel:VERTical:RELative:POSition to set the position.