Looking for a VB.Net command to do a ZoomAll in acad 2009
Looking for a VB.Net command to do a ZoomAll in acad 2009
(OP)
Anyone doing .net programming in AutoCAD 2009? The examples I see I think are for 2010 or 2011. But I am working in 2009, trying to do a ZoomAll ?
Thanks!
Thanks!





RE: Looking for a VB.Net command to do a ZoomAll in acad 2009
<CommandMethod("ZoomExtents")> _
Public Sub ZoomExtents()
Zoom(New Point3d(), New Point3d(), New Point3d(), 1.01075)
End Sub
This was taken from the .NET developers guide, found here:
http://
I recommend the Autodesk .NET discussion thread for these type of questions:
http:/