- 积分
- 474
- 明经币
- 个
- 注册时间
- 2004-3-7
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
判断一个选取的物体是不是一条直线,写了这样一个条件,为什么不可以!
objselectionset as acadselectionset
选取直线
set objselectionset=thisdrawing.selectionsets.add("sset")
thisdrawing.utility.prompt"请选择作为边界的直线:"
objselectionset.selectonscreen
判断直线
while objselectionset.item(0).objectname<>"acadline"
objselectionset.item(0).delete
thisdrawing.utility.prompt"没有选择任何对象,或者不是直线对象,请重新选择:"
objselectionset.selectonscreen
wend
这是明经通道强力推荐的 "AutoCAD vba 开发精彩实例教程"第134页的一个判断语句
不过我照抄过来,就是用不起来,每次都不能正确的判断直线,高手指教,特急,要做毕业设计用! |
|