- 积分
- 24557
- 明经币
- 个
- 注册时间
- 2004-3-17
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
发表于 2010-11-16 09:29:00
|
显示全部楼层
-
- [CommandMethod("tt6")]
- public static void test26()
- {
- Document doc = Application.DocumentManager.MdiActiveDocument;
- Editor ed = doc.Editor;
- //ResultTree rt =
- // new ResultTree("or")
- // {
- // {0, "circle"},
- // new ResultTree("and")
- // {
- // {0, "lwpolyline"},
- // new ResultTree("&")
- // {
- // {70, 1}
- // }
- // }
- // };
- var resSel = ed.SelectAll(new ResultList { { 8, "01" } });
- if (resSel.Status != PromptStatus.OK)
- return;
- ed.SetImpliedSelection(resSel.Value.GetObjectIds());
- }
复制代码 |
|