.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
Moving group of entities from point1 to point2
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
157 Views, 2 Replies
03-09-2012 07:05 AM
Can someone help me figure out which is the best way to move a group of entities (BlockReference) from one point to another? I have their ObjectIds in an ObjectIdCollection. Now, I don't know if there is a way to move all of them at once or if it have to be done for each one separately. How can I move and entity from point to point? Thanks
Solved! Go to Solution.
Re: Moving group of entities from point1 to point2
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-09-2012 12:22 PM in reply to:
HJohn1
Use the TransformBy method inherited from the entity class. You will need to loop through your collection and call TransformBy on each entity.
Dave O. 

Re: Moving group of entities from point1 to point2
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-09-2012 01:45 PM in reply to:
chiefbraincloud
Thank you
