.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Select all object in the drawing
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
543 Views, 3 Replies
06-01-2011 01:08 PM
Hello,
How can I select all the objects (lines, plylines, etc) in the drawing using C# + AutoCad?
AcadSelectionSet select = _acadCurrentDocument.SelectionSets.Add("my");
select.Select(AcSelect.acSelectionSetAll);Trying to modify this coede, but something is missing.
Solved! Go to Solution.
Re: Select all object in the drawing
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
06-01-2011 03:05 PM in reply to:
DenisLebedev
I haven't got ACAD on this computer, so I can't verify the exactness of the code, but look at the editor and the PromptSelectionOptions and PromptSelctionResult
Re: Select all object in the drawing
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
06-01-2011 03:08 PM in reply to:
DenisLebedev
If you using AcadInterop so try this code snip:
AcadSelectionSet oSset = doc.SelectionSets.Add("my");
//using filter
object miss = Type.Missing;
short[] dxfcode= new short[]{0};
object[] dxfvalue= new object[]{"line,polyline,circle,ellipse,text,insert "};
oSset.Select(AcSelect.acSelectionSetAll, miss, miss, dxfcode as object, dxfvalue as object);
//send message to command line:
doc.Utility.Prompt(string.Format("\nSelected: {0} objects", oSset.Count));
~'J'~
_____________________________________
C6309D9E0751D165D0934D0621DFF27919
C6309D9E0751D165D0934D0621DFF27919
Re: Select all object in the drawing
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
07-24-2012 04:25 AM in reply to:
DenisLebedev
But i am using Standard EXE and how does select all work in my case and get the texts with Origins
