Overview
AVAX Vector for .NET v.2 is a powerful component that provides over 500 events, methods, properties, ready to use commands and parameters to view, create, edit, print and manage 2D vector drawings. It offers developers a full control of the end user’s interactive drafting process. Version 2 targets both x86 and x64 and requires .NET Framework 4.8 or higher.
Features:
Standard geometric drawing items (Line, Point, Polyline, Arc, Circle, Ellipse, Polygon, Bezier, etc), Text with Windows based fonts, Polygon shapes filled with any kind of patterns (AutoCAD .PAT files, API solid or pattern, Bitmaps, animations etc), Copy, Array, Move, Scale, Rotate, Mirror, Transform etc, Shapes have z order, Blocks creation and insertion, and much more...
Features
Other Features
Quick Start
Drop the control onto a form, start it, and draw your first shape:
Private Sub Form1_Load(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MyBase.Load
' Initialize the control when the form loads
cAvax1.StartAvax()
End Sub
Private Sub Form1_FormClosed(ByVal eventSender As System.Object, ByVal eventArgs As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
' Release resources when the form closes
cAvax1.EndAvax()
End Sub
Private Sub Command1_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles Command1.Click
' Draw a line from (0,0) to (10,10)
cAvax1.Add_Line(0, 0, 0, 10, 10, 0)
End Sub