User manual
Section 13: Instrument Control Library (ICL) Series 3700 System Switch/Multimeter Reference Manual
13-100 3700S-901-01 Rev. C / July 2008
display.inputvalue()
Remarks
(cont.)
After sending this command, script execution pauses for the operator to enter a
value and press the ENTER key.
If limits are used, the operator will not be able to input values outside the minimum
and maximum limits.
For positive and negative entry ("+" sign used for the value field and/or the
exponent field), polarity of a non-zero value or exponent can be toggled by
positioning the cursor on the polarity sign and turning the navigation wheel. Polarity
will also toggle when using the navigation wheel to decrease or increase the value
or exponent past zero. A zero value or exponent (for example, +00) is always
positive and cannot be toggled to negative polarity.
After sending this command and pressing the EXIT key, value will return nil.
Also see
display.prompt() (on page 13-102)
display.setcursor() (on page 13-105)
display.settext() (on page 13-106)
Example
Displays an editable field ("+0.50") for operator input. Valid input range: 0.10 to +2.00,
with a default of 0.50:
display.clear()
value = display.inputvalue("+0.00", 0.5, -0.1, 2.0)
display.loadmenu.add()
Function
Adds an entry to the USER TESTS submenu of the LOAD TEST menu.
Usage
There are two ways to use this function:
display.loadmenu.add(displayname, chunk)
display.loadmenu.add(displayname, chunk, memory)
displayname: Name to display in the menu.
chunk: Chunk is the code to be executed.
memory: Save or don't save chunk and displayname in non-volatile memory.
Set memory to one of the following values:
0 or display.DONT_SAVE
1 or display.SAVE
The default memory setting is display.SAVE