8.2.27 LT_set_str
It is recommended that you switch to the originpro package. PyOrigin is primarily for users who need to work with Origin version prior to 2021. |
Description
Set LabTalk string variable
Syntax
LT_set_str(var, value)
Parameters
- var
- variable name
- value
- string variable value
Return
True if success, and False if it fails.
Examples
EX1
import PyOrigin PyOrigin.LT_set_str('strvar','example') PyOrigin.LT_get_str('strvar')