CAD查找属性快文字

js中实现代码说明:

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

function FindBlockAttrib()

{

    var winWidth = 440;

    var winHeight = 140;

    var winLeft = (screen.width - winWidth) / 2;

    var winTop = (screen.height - winHeight) / 2 - 20;

 

    var str = 'dialogHeight:' + winHeight + 'px;dialogWidth:' + winWidth + 'px;dialogTop:' + winTop + 'px;dialogLeft:' + winLeft + 'px;resizable:yes;center:yes;status:no;'

 

    var rt = window.showModalDialog("Gettext.htm?tmp=" + Math.random(), "输入属性文字", str);

 

    var txt;

 

    if (typeof (rt) == "undefined") {

        return;

    else {

        var arr = rt.split(",");

        txt = arr[0];

    }

 

    var ss = mxOcx.NewSelectionSet();

    var spFilte = mxOcx.NewResbuf();

 

    // 把块对象,当着过滤条件.

    spFilte.AddStringEx("INSERT", 5020);

 

    // 得到图上,所有块对象.

    ss.Select2(5, nullnullnull, spFilte);

 

 

    // 遍历每个块.

    for (var i = 0; i < ss.Count; i++) {

        var ent = ss.Item(i);

        if (ent == null)

            continue;

        if (ent.ObjectName == "McDbBlockReference") {

            var blkref = ent;

            var j = 0;

            for (; j < blkref.AttributeCount; j++) {

                var attrib = blkref.AttributeItem(j);

                if (attrib.TextString == txt) {

                    // 找到块属性。

                    mxOcx.PutEntityInView(ent.ObjectID, 300);

 

                    var dLen = mxOcx.ViewLongToDocCoord(80);

 

                    // 绘制一个标记圆.

                    mxOcx.DrawVectorCircle(ent.Position.x,

                ent.Position.y,

                 dLen, 65280);

                    return;

                }

            }

        }

        ent = null;

    }

 

 

    alert("没有找到块属性文字");

 

 

 

    // 在这里必须显示释放控件的COM对象指针.

    ss = null;

    spFilte = null;

    CollectGarbage();

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值