SelectedEvents property (AlarmSummary object)
Returns an EventItems object containing EventItem objects representing one or more events that are currently selected in the event list.
Syntax
object
.SelectedEvents
where
object
—the name of an AlarmEventSummary object.Remarks
To get column values for a particular EventItem object, call the GetColumnValue method.
Example
Dim oEventItem as EventItemFor Each oEventItem In AlarmEventSummary1.SelectedEventsDebug.Print oEventItem.GetColumnValue("EventSource")Next
Provide Feedback