明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1144|回复: 0

仿qselect 命令---选择集+过滤器

[复制链接]
发表于 2007-12-26 14:25:00 | 显示全部楼层 |阅读模式

仿qselect 命令

练习选择集+过滤器用法。

Sub ReadEntityData()
  Dim Obj As AcadEntity
  Dim sel As AcadSelectionSet
  Dim seldata(0) As Variant, selcode(0) As Integer
  Dim gpdata As Variant, gpcode As Variant
  Dim pt(0 To 2) As Double, pt1(0 To 2) As Double

    With ThisDrawing
        ret = .Utility.GetPoint(, "指定左上角:")
        SetRet ret, pt
        ret = .Utility.GetCorner(pt, "指定对角点:")
        SetRet ret, pt1
        Set sel = .SelectionSets.Add("ss")
        selcode(0) = 0: gpcode = selcode
        seldata(0) = "Line": gpdata = seldata
        sel.Select acSelectionSetCrossing, pt, pt1, gpcode, gpdata
        Debug.Print sel.count
        .SelectionSets.Item("ss").Clear
        'Set sel = .SelectionSets.Add("ss")
        selcode(0) = 0: gpcode = selcode
        seldata(0) = "Dimension": gpdata = seldata
        sel.Select acSelectionSetCrossing, pt, pt1, gpcode, gpdata
        Debug.Print sel.count        
        .SelectionSets.Item("ss").Delete
    End With
   
End Sub


Private Sub SetRet(ret As Variant, pt() As Double)
    pt(0) = ret(0)
    pt(1) = ret(1)
    pt(2) = ret(2)
End Sub

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

本版积分规则

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

GMT+8, 2024-11-26 10:29 , Processed in 0.163678 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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