7.7.6.77. GEL_SetNumericDebugPropertyΒΆ
Set the value of a boolean debug property
Format
GEL_SetNumericDebugProperty( propertyName **, ** value );
Parameters
propertyName specifies the property name
value specifies the value
Description
Synchronous
Synchronous from GEL: Yes
Completely synchronous: Yes
Example
int autoResetOnConnect = GEL_GetBoolDebugProperty("AutoResetOnConnect");
string flashFiles = GEL_GetStringDebugProperty("FlashFiles");
int flashTimeout = GEL_GetNumericDebugProperty(""FlashTimeoutValue");
GEL_SetBoolDebugProperty("AutoResetOnConnect", 1);
GEL_SetStringDebugProperty("FlashFiles", "a.out");
GEL_SetNumericDebugProperty(""FlashTimeoutValue", 100);
Related Topics