- 积分
- 5811
- 明经币
- 个
- 注册时间
- 2016-10-12
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
// 选取对象截图
// Export、JPGOUT、PNGOUT
object oCad = Acap.AcadApplication;
Type tpCad = oCad.GetType();
object oDoc = tpCad.InvokeMember("ActiveDocument", BindingFlags.GetProperty, null, oCad, null);
Env.Editor.SSGet();
Type tpDoc = oDoc.GetType();
object ass = tpDoc.InvokeMember("ActiveSelectionSet", BindingFlags.GetProperty, null, oDoc, null);
var path=Environment.GetFolderPath(Environment.SpecialFolder.Desktop);//获取桌面路径
tpDoc.InvokeMember("Export", BindingFlags.InvokeMethod, null, oDoc,
new object[] {path, "wmf", ass});
Env.Editor.SetImpliedSelection(new ObjectId[] { }); |
|