Real_King 发表于 2015-6-11 14:38:01

关于PromptEntityOptions 的 AddAllowedClass,可以加入限制图层的条件吗?

PromptEntityOptions CADentity_PEO = new PromptEntityOptions("\n请选择多段线");
CADentity_PEO.SetRejectMessage("\n所选实体非多段线.");
CADentity_PEO.AddAllowedClass(typeof(Polyline), true);
PromptEntityResult CADentity_RST = ed.GetEntity(CADentity_PEO);关于PromptEntityOptions 的 AddAllowedClass,可以加入限制图层的条件吗?已经限制为PL了

雪山飞狐_lzh 发表于 2015-6-11 22:07:04

用while循环+getentity

Real_King 发表于 2015-6-11 22:12:07

雪山飞狐_lzh 发表于 2015-6-11 22:07 static/image/common/back.gif
用while循环+getentity

谢谢,还是得while判断..
页: [1]
查看完整版本: 关于PromptEntityOptions 的 AddAllowedClass,可以加入限制图层的条件吗?