Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello.
I have a Hatch object and I want to create a Poyline (sometimes Circle) around the Hatch.
I looked through the AutoCAD API docs but couldn't find an implementation of the `HATCHGENERATEBOUNDARY` command in the C# API.
So I did it via Command:
ed.Command("HATCHGENERATEBOUNDARY", hatch.ObjectId, "");
and CommandAsync:
CommandResult commandResult = ed.CommandAsync("HATCHGENERATEBOUNDARY", hatch.ObjectId, "");
commandResult.OnCompleted(() => { });
I want the return result to be the created object. Can someone help me how to do it. Thanks
Solved! Go to Solution.