

COM Component
|
.NET Component
|
Explanation
|
Event MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
|
Event MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
|
The event that triggerred when mouse button get down on the component.
|
Event MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
|
Event MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
|
The event that triggerred when mouse moved on the component.
|
Event MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
|
Event MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs):
|
The event that triggerred when mouse button up on the component.
|
Event KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs)
|
Event KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs):
|
The event that triggerred when keyboard key down on the component.
|
Event Connectedcom(ByVal sender As Object, ByVal Status As Boolean)
|
Event Connected_(ByVal sender As Object, ByVal Status As Boolean)
|
The event that triggerred when component connected.
|
Event ReadValuecom(ByVal sender As Object, ByVal TagId As UInt32, ByVal Value As String)
|
Event ReadValue_(ByVal sender As Object, ByVal TagId As UInt32, ByVal Value As String)
|
The event that triggerred when value different than previously value which read from the PLC. This event sends Tag value with tag's row index(Tag_Id) to application. All tag values is sent once to main application when communication started.
|
Event ReadErrcom(ByVal sender As Object, ByVal TagId As UInt32)
|
Event ReadErr_(ByVal sender As Object, ByVal TagId As UInt32)
|
The error which occurs while reading from PLC are sent to main application with tag's row index(TagId).
|
Event TimeOutcom(ByVal sender As Object, ByVal StationName As String)
|
Event TimeOut_(ByVal sender As Object, ByVal StationName As String)
|
Sends the component's connection timeout status to main application when PLC connection unsuccessful.
|
