Name

SCPI Command :

CALCulate<n>:LIMit<li>:NAME
class NameCls[source]

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

get(window=Window.Default, limitIx=LimitIx.Default) str[source]
# SCPI: CALCulate<n>:LIMit<li>:NAME
value: str = driver.calculate.limit.name.get(window = repcap.Window.Default, limitIx = repcap.LimitIx.Default)

Selects a limit line that already exists or defines a name for a new limit line.

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

name: String containing the limit line name.

set(name: str, window=Window.Default, limitIx=LimitIx.Default) None[source]
# SCPI: CALCulate<n>:LIMit<li>:NAME
driver.calculate.limit.name.set(name = 'abc', window = repcap.Window.Default, limitIx = repcap.LimitIx.Default)

Selects a limit line that already exists or defines a name for a new limit line.

param name

String containing the limit line name.

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’)