Operand

<< 点击显示目录 >>

主页  mappView帮助助手 > mappView入门简单Wiki >

Operand



操作数可用于将其他变量加载到事件绑定中。 操作数的数据类型可以是 BOOL, ANY_REAL, ANY_INT, ANY_STRING, BOOL_ARRAY, ANY_REAL_ARRAY, ANY_INT_ARRAY, ANY_STRING_ARRAY, DATE_AND_TIME


OPC UA operands

<!-- Read value from PLC />-->
<Operand name="ContentIsVisible1" datatype="BOOL">
  <ReadTarget xsi:type="opcUa.NodeAction.Read" refId="::AsGlobalPV:Motor[1].IsVisible" >
    <Method xsi:type="opcUa.NodeAction.GetValue" />
  </ReadTarget>
</Operand>


Session operands

<!-- Read session variable />-->
<Operand name="InputValue2" datatype="ANY_INT">
  <ReadTarget xsi:type="session.VariableAction.Read" refId="InputValue2" >
    <Method xsi:type="session.VariableAction.GetValue" />
  </ReadTarget>
</Operand>


Client system operands

 <!-- Read session id />-->
  <Operand name="slotId" datatype="ANY_INT">
   <ReadTarget xsi:type="session.VariableAction.Read" refId="::SYSTEM:clientInfo.slotId" >
    <Method xsi:type="session.VariableAction.GetValue" />
   </ReadTarget>
 </Operand>


Widget operands

<!-- Read widget property />-->
<Operand name="contentid" datatype="ANY_STRING">
  <ReadTarget xsi:type="widgets.brease.ContentControl.ReadAction" contentRefId="Content1" widgetRefId="ContentControl1" >
    <Method xsi:type="widgets.brease.ContentControl.Action.GetContentId" />
  </ReadTarget>
</Operand>