Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to be able to select all objects within a two points on a drawing (a window selection).
However, I want to be able to achieve this through a database and not through PromptSelectionResult, since the drawing will be closed.
Basically, something like this
PromptSelectionResult prRes = AcEnv.ed.SelectWindow(dwgpt1, dwgpt2);
ObjectId[] objIdArray = prRes.Value.GetObjectIds();
But on a closed drawing.
Is this possible?
Solved! Go to Solution.