Add_PLT example
Example for Add_PLT method
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
Dim sPLTFile As String
Dim x As Single
Dim y As Single
Dim z As Single
Dim Answer As Boolean
sPLTFile = My.Application.Info.DirectoryPath & "\..\house.plt"
Answer = cAvax1.Add_PLT(sPLTFile, x, y, z)
CAvax1.Command = Avax.AvaxCommand.AutoLimits_c
End Sub