ActionInProgress example
Example for ActionInProgress method
Private Sub cAvax1_OnMouseMove(ByVal Sender As Object, ByVal e As Avax.cAvax.MouseMoveEventArgs) Handles cAvax1.OnMouseMove
If cAvax1.ActionInProgress() = True Then
Label1.Text = "Action in progress..."
Else
Label1.Text = "No action in progress..."
End If
End Sub
Private Sub Form1_Load(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MyBase.Load
cAvax1.StartAvax()
End Sub
Private Sub Form1_FormClosed(ByVal eventSender As System.Object, ByVal eventArgs As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
cAvax1.EndAvax()
End Sub
Private Sub Command1_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles Command1.Click
cAvax1.Command = Avax.AvaxCommand.Zoom_c
End Sub