System SourceMeter® Instrument Reference Manual Section 7:
2600BS-901-01 Rev. C / August 2016 7-75
display.loadmenu.catalog()
This function creates an iterator for the user menu items accessed using the LOAD key on the instrument front
panel.
Type TSP-Link accessible
Affected by Where saved Default value
Usage
for displayName in display.loadmenu.catalog() do body end
for displayName, code in display.loadmenu.catalog() do body end
The name displayed in the menu
The code associated with the
displayName
The body of the code to process the entries in the loop
Details
Each time through the loop, displayName and code will take on the values in the USER TESTS
menu.
The instrument goes through the list in random order.
Example
display.loadmenu.catalog() do
print(displayName, code)
Test DUT1() beeper.beep(2, 500)
Part1 testpart([[Part1]], 5.0)
Also see
display.loadmenu.add() (on page 7-73)
display.loadmenu.delete() (on page 7-75)
display.loadmenu.delete()
This function removes an entry from the USER TESTS menu, which can be accessed using the LOAD key on the
instrument front panel.
Type TSP-Link accessible
Affected by Where saved Default value
Function Yes
Usage
display.loadmenu.delete(displayName)
The name to be deleted from the USER TESTS menu
Details
If you delete an entry from the USER TESTS menu, you can no longer run it by pressing the LOAD
key.