.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
Looping Thru all objects (Blocks) in drawing
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
237 Views, 1 Replies
01-17-2012 08:01 AM
I want to loop through all blockreferences and entities in Model Space and Layout space...
Can I do that in one loop?
Can I do something like for each object in Drawing database?
What's the object set I'm looking for here?
Here's the beginning of my current code.
'Start(Transaction)
Using myTrans As Transaction = DatabaseIn.TransactionManager.StartTransaction
Dim myBT As BlockTable = DatabaseIn.BlockTableId.GetObject(OpenMode.ForRead )
Dim myModelSpace As BlockTableRecord = myBT(BlockTableRecord.ModelSpace).GetObject(OpenMo de.ForRead)
'For Each Object in ModelSpace
For Each myObjID As ObjectId In myModelSpace
Dim myEnt As Entity = myObjID.GetObject(OpenMode.ForRead)
If TypeOf myEnt Is Autodesk.AutoCAD.DatabaseServices.Line Then
Solved! Go to Solution.
Re: Looping Thru all objects (Blocks) in drawing
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-17-2012 09:55 AM in reply to:
VB_Autocad_guy
One thing you could do is loop through the blocktable then get the entites in blocktablerecords that are layouts(IsLayout = true).
or get modelspace then get the blocktablerecords through the LayoutDictionary.
You can also find your answers @ TheSwamp

