7: TSP command reference Series 2600B System SourceMeter® Instrument
7-76 2600BS-901-01 Rev. C / August 2016
Example
display.loadmenu.delete("Test9")
for displayName, code in
display.loadmenu.catalog() do
print(displayName, code)
Deletes the entry named "Test9"
Output:
Test DUT1() beeper.beep(2, 500)
Part1 testpart([[Part1]], 5.0)
Also see
display.loadmenu.add() (on page 7-73)
display.loadmenu.catalog() (on page 7-75)
display.locallockout
This attribute describes whether or not the EXIT (LOCAL) key on the instrument front panel is enabled.
Type TSP-Link accessible Affected by Where saved Default value
Usage
lockout = display.locallockout
display.locallockout = lockout
0 or display.UNLOCK: Unlocks EXIT (LOCAL) key
or
: Locks out EXIT (LOCAL) key
Details
Set display.locallockout to display.LOCK to prevent the user from interrupting remote
operation by pressing the EXIT (LOCAL) key.
Set this attribute to display.UNLOCK to allow the EXIT (LOCAL) key to interrupt script or remote
operation.
Example
display.locallockout = display.LOCK
Disables the front-panel EXIT (LOCAL) key.
Also see
None