NRC_SetDoubleVar(int num, double value)
Set the value of a DOUBLE variable
Type
int=>Set the value of a DOUBLE variable
Return value | Description |
---|---|
0 | The function is called successfully |
-101 | Invalid input parameter |
-102 | The target object does not exist. This typically occurs when the system initialization is incomplete, and calling other functions may return this value |
-103 | The target object is currently in an inoperable state |
Parameter Option
Parameter | Type | Description |
---|---|---|
num | int | The number of the DOUBLE variable, value range: 0 < num <= 100 |
value | double | The target value to be set |
Sample code
NRC_SetDoubleVar(1,66.66);//Assign 66.66 to variable GD001