![Keithley 2651A Скачать руководство пользователя страница 681](http://html1.mh-extra.com/html/keithley/2651a/2651a_reference-manual_661729681.webp)
Model 2651A High Power System SourceMeter® Instrument Reference Manual
Section 7: Command reference
2651A-901-01 Rev. A / March 2011
7-373
Example 1
for name in userstring.catalog() do
userstring.delete(name)
end
Deletes all user strings in nonvolatile memory.
Example 2
for name in userstring.catalog() do
print(name .. " = " ..
userstring.get(name))
end
Prints all
userstring
key-value pairs.
Output:
product = Widgets
assetnumber = 236
contact = John Doe
The above output lists the user strings added in the
example for the
userstring.add()
function.
Notice the key-value pairs are not listed in the
order they were added.
Also see
(on page 7-372)
userstring.delete()
This function deletes a user-defined string from nonvolatile memory.
Type
TSP-Link accessible
Affected by
Where saved
Default value
Function Yes
Usage
userstring.delete(
name
)
name
The name (key) of the key-value pair of the userstring to delete
Details
This function deletes the string that is associated with
name
from nonvolatile memory.
Example
userstring.delete("assetnumber")
userstring.delete("product")
userstring.delete("contact")
Deletes the user-defined strings associated with the
"assetnumber"
,
"product"
, and
"contact"
names.
Also see
(on page 7-372)
(on page 7-372)