Sequence Summary Control events
The
Sequence Summary Control
has the following events that can be used by a client in runtime.Name | Description |
---|---|
doubleClicked | The doubleClicked event can be used to directly display the double clicked Equipment Sequence in the Sequence Detail Control using VBA script.Example VBA Script: Private Sub SeqMgrSummaryControl2_sequenceRequested(ByVal p_SequenceName As String)
SeqMgrDetailControl1.SequenceName = p_SequenceName
SeqMgrDetailControl1.LoadChart = True
End Sub |
sequenceSelected | The sequenceSelected event can be used to directly display the selected Equipment Sequence in the Sequence Detail Control using VBA script. |
everyTagConnectedChanged | Occurs whenever the value of the IsEveryTagConnected property changes. The event has a single Boolean parameter that is the current IsEveryTagConnected property value. |
liveDataConnectedChanged | Occurs whenever the value of the IsLiveDataConnected property changes. The event has a single Boolean parameter that is the current IsLiveDataConnected property value. |
seqMgrServerConnnectedChanged | Occurs whenever the value of the IsSeqMgrServerConnected property changes. The event has a single Boolean parameter that is the current IsSeqMgrServerConnected property value. |
seqMgrServerConnectedBackupChanged | Occurs whenever the value of the IsSeqMgrServerConnectedBackup property changes. The event has a single Boolean parameter that is the current IsSeqMgrServerConnectedBackup property value. |
seqMgrServerToControllerConnectedChanged | Occurs whenever the value of the IsSeqMgrServerToControllerConnected property changes. The event has a single Boolean parameter that is the current IsSeqMgrServerToControllerConnected property value. |
seqMgrServerToControllerConnectedBackupChanged | Occurs whenever the value of the IsSeqMgrServerToControllerConnectedBackup property changes. The event has a single Boolean parameter that is the current IsSeqMgrServerToControllerConnectedBackup property value. |
selectedSequenceStateChanged | Occurs whenever the value of the SelectedSequenceState property changes. The event has a single integer parameter that is the current SelectedSequenceState property value. |
Provide Feedback