返回介绍

OtherCorrectionsExceptions 集合对象

发布于 2019-09-29 09:51:17 字数 1218 浏览 864 评论 0 收藏 0

AutoCorrect
OtherCorrectionExceptions (OtherCorrectionException)

由 OtherCorrectionsException 对象组成的集合,代表 Microsoft Word 将不进行自动更正的所有单词的列表。此列表与“‘自动更正’例外项”对话框(“工具”菜单中的“自动更正”命令)中的“其他”选项卡上“自动更正”例外项的列表相对应。

使用 OtherCorrectionsExceptions 集合

用 OtherCorrectionsExceptions 属性可返回 OtherCorrectionsExceptions 集合。下例将显示此集合中的项目。

For Each aCap In AutoCorrect.OtherCorrectionsExceptions
 MsgBox aCap.Name
Next aCap

如果 OtherCorrectionsAutoAdd 属性值为 True,这些单词将被自动添至“自动更正”例外项的列表中。用 Add 方法可在 OtherCorrectionsExceptions 集合中添加一个项目。下例将“TipTop”添至“自动更正”例外项列表中。

AutoCorrect.OtherCorrectionsExceptions.Add Name:="TipTop"

用 OtherCorrectionsExceptions (index) 可返回单个 OtherCorrectionsException 对象,其中index 是该对象的名称或者索引序号。下例从“自动更正”例外项的列表中删除“WTop”。

AutoCorrect.OtherCorrectionsExceptions("WTop").Delete

索引序号代表“自动更正”例外项在 OtherCorrectionsExceptions 集合中的位置。下例将显示 OtherCorrectionsExceptions 集合中的第一个项目的名称。

MsgBox AutoCorrect.OtherCorrectionsExceptions(1).Name

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文