Keithley SourceMeter 2600 Series Reference Manual page 409

Table of Contents

Advertisement

Series 2600 System SourceMeters Reference Manual
userstring.catalog
Function
Creates an iterator for the user string catalog.
Usage
for name in userstring.catalog() do ... end
Remarks
Accessing the catalog for user string names allows the user to print or delete all string
name values in non-volatile memory. The entries will be enumerated in no particular
order.
userstring.add, userstring.delete,
Also see
Deletes all user strings in non-volatile memory:
Example
for name in userstring.catalog() do
userstring.delete(name)
end
Prints all user string name value pairs in non-volatile memory:
for name in userstring.catalog() do
print(name .. " = " .. userstring.get(name))
end
Output:
The above output lists the user strings added in the "Example" for the
function. Notice that they are not listed in the order that they were added.
userstring.delete
Function
Deletes a user-defined string from non-volatile memory.
Usage
userstring.delete(name)
name
Remarks
This function will delete from non-volatile memory the string that is associated with the
string
Also see
userstring.add, userstring.catalog,
Deletes user-defined strings from non-volatile memory:
Example
userstring.delete("assetnumber")
userstring.delete("department")
userstring.delete("contact")
department = Widgets
assetnumber = 236
contact = John Doe
Name of the user string.
.
name
Return to
Instrument Control Library 12-135
userstring.get
userstring.get
Section 12 topics
2600S-901-01 Rev. A / May 2006
userstring.add

Hide quick links:

Advertisement

Table of Contents
loading

Table of Contents