IUAVariable.RemoteWrite(value, timeoutMilliseconds)
将由第一个参数中传递的值写入针对其调用此方法的变量中。第二个可选参数用于设置超时时段。
void RemoteWrite(UAValuevalue, doubletimeoutMilliseconds);
参数
- value(UAValue)
- 要写入的值。
- timeoutMilliseconds(double)
- 超时时段(以毫秒为单位表示),在此之后 API 将引发异常。小贴士: 如果未指定,则参数的默认值为30000(30 秒)。
示例
在以下示例中,将值
42
写入 Speed
变量。var currentSpeed = Project.Current.GetVariable("Model/Motor/Speed"); currentSpeed.RemoteWrite(42);
提供反馈