| Author |
Message |
Guest
|
Posted:
Sun Mar 27, 2005 5:55 pm Post subject:
Selection, show the little Blue Boxes if a Object is select |
|
|
Hello
If I click on an Polygon manualy in the Map the Polgyon is selected.
In the Map I then see little Blue Quarters (Filled Blue Boxes) on every Node
of the Polygon.
I like to select a Polygon via Code and then it should also have these
little Boxes.
If I do that via the Selectionset the Polygon is only Highlighted but I it
don't shows the Boxes.
Any Ideas hwo to make the Boxes Visible via Code too ?
Here is my Codepart how I do it at this time:
Dim ssT As AcadSelectionSet
ssT.Select(AcSelect.acSelectionSetWindow, corner1, corner2, FilterType,
FilterData)
ssT.Highlight(True)
ssT.Update()
Thanx
Jerry
|
|
| Back to top |
|
 |
bcoward
Guest
|
Posted:
Sun Mar 27, 2005 7:06 pm Post subject:
Re: Selection, show the little Blue Boxes if a Object is se |
|
|
Jerry,
Grips (the blue boxes, sometimes red) is a topic that has been discussed in other theads. Take a look at Tony's answer on this thread..http://discussion.autodesk.com/thread.jspa?messageID=424135
Search this group for the word "Grips" and you'll find other reading.
Good luck,
Bob Coward
CADS, Inc
800-366-0946
bcoward@mindspring.com |
|
| Back to top |
|
 |
Paul Richardson
Guest
|
Posted:
Sun Mar 27, 2005 7:09 pm Post subject:
Re: Selection, show the little Blue Boxes if a Object is se |
|
|
Hey Bob,
How's things. Happy Easter to you and
yours if you celebrate such.
Paul
| Quote: | wrote in message
news:18972857.1111932418369.JavaMail.jive@jiveforum2.autodesk.com...
Jerry,
Grips (the blue boxes, sometimes red) is a topic that has been discussed
in other theads. Take a look at Tony's answer on this
thread..http://discussion.autodesk.com/thread.jspa?messageID=424135
Search this group for the word "Grips" and you'll find other reading.
Good luck,
Bob Coward
CADS, Inc
800-366-0946
bcoward@mindspring.com |
|
|
| Back to top |
|
 |
bcoward
Guest
|
Posted:
Sun Mar 27, 2005 7:25 pm Post subject:
Re: Selection, show the little Blue Boxes if a Object is se |
|
|
Paul,
Happy Easter to you and all others also. Things are still MyWorkLoad.StillTooHeavy(True). Thought I'd answer some questions before heading out.
Regards,
Bob |
|
| Back to top |
|
 |
Tony Tanzillo
Guest
|
Posted:
Fri Apr 01, 2005 10:03 am Post subject:
Re: Selection, show the little Blue Boxes if a Object is se |
|
|
Activating grips on an object when AutoCAD is not
quiescent is to the best of my knowledge, not possible
in VB or ActiveX. Last time I checked, there was an
undocumented ObjectARX function whose name suggested
that it does that (acedSetHotGrips or something), but it
was not implemented. That may have changed in R16.x,
but I've not investigated it.
--
http://www.caddzone.com
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005
http://www.acadxtabs.com
<jerry@nospam.com> wrote in message news:4246ad64_1@newsprd01...
| Quote: |
Hello
If I click on an Polygon manualy in the Map the Polgyon is selected.
In the Map I then see little Blue Quarters (Filled Blue Boxes) on every Node of the Polygon.
I like to select a Polygon via Code and then it should also have these little Boxes.
If I do that via the Selectionset the Polygon is only Highlighted but I it don't shows the Boxes.
Any Ideas hwo to make the Boxes Visible via Code too ?
Here is my Codepart how I do it at this time:
Dim ssT As AcadSelectionSet
ssT.Select(AcSelect.acSelectionSetWindow, corner1, corner2, FilterType, FilterData)
ssT.Highlight(True)
ssT.Update()
Thanx
Jerry
|
|
|
| Back to top |
|
 |
|
|
|
|