明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1672|回复: 5

[求助]下列删除文字样式的方法有什么问题

[复制链接]
发表于 2006-10-18 07:54:00 | 显示全部楼层 |阅读模式
我想在VBA中删除一个指定的文字样式,可我的代码怎么也删除不了,每次运行都出错。
Dim objCount As Integer
Dim i As Integer
objCount = ThisDrawing.TextStyles.Count

Dim textObj As AcadTextStyle
For i = 0 To objCount - 1
Set textObj = ThisDrawing.TextStyles.Item(i)
If textObj.Name = "aaa" Then ThisDrawing.TextStyles.Item(i).Delete
Next

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
发表于 2006-10-19 08:53:00 | 显示全部楼层

错误信息已经写得很清楚了,当前图档中有文字使用了该文字样式,所以删不了

 

 楼主| 发表于 2006-10-24 09:27:00 | 显示全部楼层

不是的,我对图中的所有文字都进行了检查,没有文字使用这处样式。这可以确定。

 

发表于 2006-10-28 10:59:00 | 显示全部楼层

正确的代码如下:

For Each txtStyle In ThisDrawing.TextStyles
        If txtStyle.Name = "aaa" Then
            txtStyle.Delete
        End If
Next

 楼主| 发表于 2006-10-30 08:21:00 | 显示全部楼层

楼上的代码可以通过,谢谢了!

还有一个问题,我处理的一些外来图纸中,有一些图内有这样的文字样式,其样式名为空,即""。我用下列代码

For Each txtStyle In ThisDrawing.TextStyles
        If txtStyle.Name = "" Then
            txtStyle.Delete
        End If
Next

进行删除时,出错。出错信息和前面一样。

 

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

用下列代码试一下

 For Each txtStyle In ThisDrawing.TextStyles
        If Trim(UCase(txtStyle.Name)) = ""  Then
            txtStyle.Delete
        End If
 Next

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

本版积分规则

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

GMT+8, 2024-11-26 22:17 , Processed in 0.173391 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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