IsConstant Property
Indicates whether or not the variable is defined as constant. Constant variables cannot be changed post creation.
Syntax
Property IsConstant As Boolean |
Parameters
None
Examples
IronPython
#Get variable constant flag |
C#
//Get variable constant flag
ScriptData.Variables[varName].IsConstant = true; |