明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1595|回复: 3

请问怎样用vba更改已绘制的块的属性?

[复制链接]
发表于 2003-12-13 20:10:00 | 显示全部楼层 |阅读模式
发表于 2003-12-13 20:34:00 | 显示全部楼层
用HasAttributes判断有没有属性。
用GetAttributes返回属性引用数组。

  1. Sub test()
  2.     ' 返回属性引用
  3.     Dim newvarAttributes As Variant
  4.     newvarAttributes = blockrefobj.GetAttributes
  5.    
  6.     ' 更改属性引用值
  7.     For I = LBound(varAttributes) To UBound(varAttributes)
  8.         If varAttributes(I).TagString = "要修改的标签" Then
  9.             varAttributes(I).TextString = "更改后的新值"
  10.         End If
  11.     Next
  12.     blockrefobj.Update
  13. End Sub
 楼主| 发表于 2003-12-14 08:50:00 | 显示全部楼层
谢谢
 楼主| 发表于 2003-12-14 21:50:00 | 显示全部楼层
请问怎样得到blockrefobj
因为已有块,不能add or insert
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-28 12:54 , Processed in 0.175817 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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