PythonScope Class
Python scope module.
System.Object
WebSupergoo.ABCpdf14.Python.PythonScope
Implements: IDisposable
Method
Description
Contains
Determines whether the module contains the variable.
Remove
Removes the variable from the module.
SetValue
Sets the variable to a string or None.
GetStringValue
Gets the variable's string value.
GetBooleanValue
Gets the variable's Boolean value.
GetInt32Value
Gets the variable's integer value.
GetInt64Value
Gets the variable's integer value.
GetUInt64Value
Gets the variable's integer value.
GetDoubleValue
Gets the variable's floating-point value.
SetAfterEval
Evaluates a Python expression and assigns its value to a variable.
EvalString
Evaluates a Python expression and gets its string value.
EvalBoolean
Evaluates a Python expression and gets its Boolean value.
EvalInt32
Evaluates a Python expression and gets its integer value.
EvalInt64
Evaluates a Python expression and gets its integer value.
EvalUInt64
Evaluates a Python expression and gets its integer value.
EvalDouble
Evaluates a Python expression and gets its floating-point value.
EvalToString
Evaluates a Python expression and converts its value to string.
Exec
Execute Python code.
Property
Description
Runtime
The Python runtime.