Add_SVG example
Example for Add_SVG 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 sSVGFile As String
Dim x As Single
Dim y As Single
Dim z As Single
Dim vItemProperties As Object
Dim vRetHandles As Object
Dim AvaxHandle As Boolean
sSVGFile = My.Application.Info.DirectoryPath & "\..\rectangles.svg"
AvaxHandle = cAvax1.Add_SVG(sSVGFile, x, y, z, vItemProperties, vRetHandles)
CAvax1.Command = Avax.AvaxCommand.AutoLimits_c
End Sub