TScript::IsDefined
TScript::IsDefined allows a source string to be added during execution of another tscript.
public TScript::IsDefined( WString soucreString, WString nameSpace = null : Boolean result );
Parameters
soucreString | The string that contains the new code to be applied. |
nameSpace | The class name for which this code should be named in. If null then the method will be default static. |
result | True if the method has alreay been defined |
Return Values
The error.errorCode value will be set to the underlining windows error message code and the error.errorString will have a detailed description of the error.
Remarks
Example Use
- TScript
TScript::AddDefinedVariable(u"My"); if(TScript::IsDefined(u"Method",u"My") == false){ TScript::AddMethod(u"static Method(WString message: Integer results){" u"System::MessageBox(message:results);" u"}",u"My"); } My::Method(L"This is the Message");
Requirements
TScript Version: 1.8
Also See
TScript::AddDefinedVariable, TScript::AddMethodListen All
Comments (0)