MpAlarmXListUIConnectType

<< 点击显示目录 >>

主页  mappServices帮助手册 > mapp AlarmX: 报警管理 > > 数据类型和枚举 > 数据类型 >

MpAlarmXListUIConnectType

这种数据类型可用于在 MpAlarmXListUI 和HMI应用程序之间建立连接

参数

数据类型

说明

Status

MpAlarmXListUIStatusEnum

当前操作

AlarmList

MpAlarmXListUIAlarmListType

活动或未确认的警报列表

AcknowledgeAll

BOOL

确认所有报警

VC4连接。 来自按钮的数据点/类型。SetDatapoint / SetValue: 1

mapp视图连接。 事件绑定,更多信息见下面的示例代码。

AcknowledgeID

UDINT

确认由实例ID指定的警报

VC4连接。 Datapoint from Button / Type:SetDatapoint / SetValue:实例ID

Acknowledge

BOOL

确认选定的警报

VC4连接。 从按钮的数据点/类型。SetDatapoint / SetValue: 1

mapp视图连接。 事件绑定,更多信息见下面的示例代码。

Details

MpAlarmXListUIDetailsType

列表中选择的警报的详细信息

Language

STRING[20]

定义了用于显示警报的语言或单位

VC4连接:

 

ui_alarmxlistuiconnecttype

 

mapp View连接。

 

mappview_alarmxlistuiconnecttype

 

"确认 "按钮的事件绑定

<EventBinding>
    <Source xsi:type="widgets.brease.Button.Event" contentRefId="AlarmPage" widgetRefId="Acknowledge" event="Click" />
        <EventHandler>
            <Action>
                <Target xsi:type="opcUa.NodeAction" refId="::AsGlobalPV:AlarmXListUIConnect.Acknowledge" >
                    <Method xsi:type="opcUa.NodeAction.SetValueBool" value="true" />
                </Target>
            </Action>
        </EventHandler>
</EventBinding>

"AcknowledgeAll "按钮的事件绑定

<EventBinding>
    <Source xsi:type="widgets.brease.Button.Event" contentRefId="AlarmPage" widgetRefId="AcknowledgeAll" event="Click" />
        <EventHandler>
            <Action>
                <Target xsi:type="opcUa.NodeAction" refId="::AsGlobalPV:AlarmXListUIConnect.AcknowledgeAll" >
                    <Method xsi:type="opcUa.NodeAction.SetValueBool" value="true" />
                </Target>
            </Action>
        </EventHandler>
</EventBinding>