如何使用selectionset选择某层所有entity?
<font face="Verdana">如何使用selectionset选择某层所有entity,类似于在AutoCAD中使用qselect命令后得到的结果,哪位有代码,能贴上来参考下吗,谢谢了</font> 过滤器 8 . LayerName 这个我知道,关键是怎么设置不需要在命令行中输出提示的那种,不需要交换,不知我有没说明白?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());
}
谢谢上面的几位朋友! 回复 kg_loveyou 的帖子
楼主可有解决方案,分享一下代码或者借口函数吧! 4楼不是有代码吗 回复 csu_yijie 的帖子
嗯,就是四楼的函数 先了解一下,之后在详细学习... 谢谢狐兄和kg_loveyou,俺愚钝了,没看下面几行代码。。。。
页:
[1]
2