<< 点击显示目录 >> 主页 mappView帮助助手 > mapp View帮助信息 > 工程 > 事件和行动 > 行动 > OPC UA actions > SetValueDateTime |
将变量属性 "value "设置为一个值。
Attribute |
Data type or value |
说明 |
xsi:type |
opcUa.NodeAction.SetValueDateTime session.VariableAction.SetValueDateTime |
|
value |
DATE_AND_TIME |
要设置的值 |
这个动作可以在事件处理程序的顺序或平行动作中使用。
一个OPC UA或会话变量上的动作被同步调用。这意味着,对于一连串的动作,值也被写入。如果同一个变量被几个事件绑定通过写或读动作同时(并行)访问,那么执行的顺序和值的当前性就不能保证。
设置OPC UA变量 "::Program:Variable1 "的 值为 2018-02-23T09:33:30Z
<Target xsi:type="opcUa.NodeAction" refId="::Program:Variable1" >
<Method xsi:type="opcUa.NodeAction.SetValueDateTime" value="2018-02-23T09:33:30Z" />
</Target>
将会话变量 "Variable1 "设置 为数值 2018-02-23T09:33:30Z
<Target xsi:type="session.VariableAction" refId="Variable1" >
<Method xsi:type="session.VariableAction.SetValueDateTime" value="2018-02-23T09:33:30Z" />
</Target>