明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1385|回复: 1

只選擇圖層SIDE中的polyline為什麼會失敗

[复制链接]
发表于 2006-4-19 12:30:00 | 显示全部楼层 |阅读模式

本人以下程序为什么会失败呢?错误我知道在

Ftype(1) = 0
Fdata(1) = "polyline" 这两句

因为将polyline改为circle,就可以实现只选SIDE上的圆了,请问只选多义线怎么不是polyline,如果本人将polyline改为*line可以选到polyline,但同是也选上了不想要的line,请老师指教,谢谢

Public Sub copyboard()
On Error Resume Next
Dim ssetobj As AcadSelectionSet
Dim Ftype(3) As Integer
Dim Fdata(3) As Variant
ThisDrawing.SelectionSets("cbss").Delete
If Err Then
Err.Clear
End If
Ftype(0) = -4
Fdata(0) = "<and"
Ftype(1) = 0
Fdata(1) = "polyline"
Ftype(2) = 8
Fdata(2) = "SIDE"
Ftype(3) = -4
Fdata(3) = "and>"
Set ssetobj = ThisDrawing.SelectionSets.Add("cbss")
ssetobj.SelectOnScreen Ftype, Fdata

End Sub

发表于 2006-4-19 13:33:00 | 显示全部楼层

Dim Ftype(1) As Integer
Dim Fdata(1) As Variant

Ftype(0) = 0
Fdata(0) = "*polyline"
Ftype(1) = 8
Fdata(1) = "SIDE"

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-27 06:29 , Processed in 0.165505 second(s), 30 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表