GetValue

<< 点击显示目录 >>

主页  mappView帮助助手 > mapp View帮助信息 > 工程 > 事件和行动 > 行动 > OPC UA actions >

GetValue

为引用的对象提供属性 "value "的值。

方法属性

Attribute

Data type or value

Description

xsi:type

opcUa.NodeAction.GetValue

session.VariableAction.GetValue

 

返回值在变量 result中可用 。

行为

这个动作可以用在事件处理程序的顺序或平行动作中。

对OPC UA或会话变量的操作被同步调用。这意味着,对于一连串的动作,值也被读取,并可以在动作的结果处理程序中使用。

例子

返回OPC UA变量 "::Program:Variable1 "值  作为结果。

    <ReadTarget xsi:type="opcUa.NodeAction.Read" refId="::Program:Variable1" >
        <Method xsi:type="opcUa.NodeAction.GetValue" />
    </ReadTarget>

返回会话变量 "Variable1 "的值  作为结果。

    <ReadTarget xsi:type="session.VariableAction.Read" refId="Variable1" >
        <Method xsi:type="session.VariableAction.GetValue" />
    </ReadTarget>