7.9.8.76. GEL_SetBoolDebugPropertyΒΆ
Set the value of a boolean debug property
Format
GEL_SetBoolDebugProperty(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