Word 2007:键盘快捷键,用于自动更正光标前面的单词


Answers:


1

您可以使用以下宏来实现此目的并将其绑定到您选择的键盘组合。

Dim r As Range
Set r = Selection.GoToNext(wdGoToSpellingError)

With r.GetSpellingSuggestions()
  If .Count > 0 Then
    r.Text = .Item(1).Name
  End If
End With

我有时间试试这个:)
MarioDS
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.