.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

About ed.SelectWindow select range

4 REPLIES 4
Reply
Message 1 of 5
sdphg
459 Views, 4 Replies

About ed.SelectWindow select range

I find the ed.SelectWindow is not always select the correct range. with drawing zoom out, the range is not within the two points specified, the range is larger than the actual range.that means the ed.SelectWindow can not be trusted.why and how can get rid of that?

thanks.

 

4 REPLIES 4
Message 2 of 5
Hallex
in reply to: sdphg

You may want to zoom window before you run your sample

   Public Sub ZoomWindow(db As Database, minpt As Point2d, maxpt As Point2d)
        Dim doc As Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument
        Dim view As ViewTableRecord = New ViewTableRecord()
        view.CenterPoint = (minpt + (maxpt - minpt) / 2.0)
        view.Height = (maxpt.Y - minpt.Y)
        view.Width = (maxpt.X - minpt.X)
        doc.Editor.SetCurrentView(view)
        db.UpdateExt(True)
    End Sub

    <CommandMethod("ZOOMW")> _
    Public Sub ZoomREctangle()
        Dim doc As Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument
        Dim db As Database = doc.Database
        ZoomWindow(db, New Point2d(2, 2), New Point2d(8, 8))
    End Sub

 

~'J'~

_____________________________________
C6309D9E0751D165D0934D0621DFF27919
Message 3 of 5
sdphg
in reply to: Hallex

thanks Hallex.but I already zoomed before  ed.SelectWindow.

Message 4 of 5
_gile
in reply to: sdphg

Hi,

 

How did you zoom ?

Remind SendStringToExecute (or SendCommand) doesn't run synchronously and may happen after the selection.

Use a hard-coded zoom method as shown by Hallex.



Gilles Chanteau
Programmation AutoCAD LISP/.NET
GileCAD
GitHub

Message 5 of 5
sdphg
in reply to: _gile

thanks gile

Actually, I run command ZOOM E first,then run the command to execute ed.SelectWindow.

And the fact is, if the view is large enough the selection is correct,but when Zoom extent or zoom out to a very small size, the selection always contains some entities outside the range.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost