System SourceMeter® Instrument Reference Manual Section 7:
2600BS-901-01 Rev. B / May 2013 7-379
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
userstring.add() (on page 7-377)
userstring.catalog() (on page 7-378)
userstring.get() (on page 7-379)
userstring.get()
This function retrieves a user-defined string from nonvolatile memory.
Type TSP-Link accessible
Affected by Where saved Default value
Usage
value = userstring.get(name)
The value of the user-defined string key-value pair
The name (key) of the user-defined string
Details
This function retrieves the string that is associated with name from nonvolatile memory.
Example
value = userstring.get("assetnumber")
print(value)
Read the value associated with a user-defined
string named "assetnumber".
Store it in a variable called value, then print the
variable value.
Output:
Also see
userstring.add() (on page 7-377)
userstring.catalog() (on page 7-378)
userstring.delete() (on page 7-378)