State

SCPI Command :

CALCulate<n>:LIMit<li>:UPPer:STATe
class StateCls[source]

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

get(window=Window.Default, limitIx=LimitIx.Default) bool[source]
# SCPI: CALCulate<n>:LIMit<li>:UPPer:STATe
value: bool = driver.calculate.limit.upper.state.get(window = repcap.Window.Default, limitIx = repcap.LimitIx.Default)

Turns an upper limit line on and off. Before you can use the command, you have to select a limit line with method RsFsw. Calculate.Limit.Name.set.

param window

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

param limitIx

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

return

state: ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

set(state: bool, window=Window.Default, limitIx=LimitIx.Default) None[source]
# SCPI: CALCulate<n>:LIMit<li>:UPPer:STATe
driver.calculate.limit.upper.state.set(state = False, window = repcap.Window.Default, limitIx = repcap.LimitIx.Default)

Turns an upper limit line on and off. Before you can use the command, you have to select a limit line with method RsFsw. Calculate.Limit.Name.set.

param state

ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

param window

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

param limitIx

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