返回介绍

AutoCorrect 属性

发布于 2019-09-29 10:04:11 字数 889 浏览 1112 评论 0 收藏 0

返回一个 AutoCorrect 对象,该对象包含当前“自动更正”的选项、词条和例外项。只读。

示例

本示例添加一个“自动更正”替换词条。运行此代码后,在文档中键入的所有“sr”都会自动替换为“Stella Richards”。

AutoCorrect.Entries.Add Name:= "sr", Value:= "Stella Richards"

本示例将删除指定的原有“自动更正”词条。

Dim strInput as String
Dim aceLoop as AutoCorrectEntry
Dim blnMatch as Boolean
Dim intConfirm as Integer

blnMatch = False

strInput = InputBox("Enter the AutoCorrect entry to delete.")

For Each aceLoop in AutoCorrect.Entries
    With aceLoop
  If .Name = strInput Then
  blnMatch = True
  intConfirm = _
             MsgBox("Are you sure you want to delete " & _
  .Name, 4)
  If intConfirm = vbYes Then
  .Delete
  End If
  End If
 End With
Next aceLoop

If blnMatch <> True Then
 MsgBox "There was no AutoCorrect entry: " & strInput
End If

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

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

发布评论

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