对于我使用的大多数文档,我需要突出显示亚洲字体的实例(例如 SimSun、MS Mincho)。
我将下面的代码放在一起 - 它运行良好,但它不会突出显示非亚洲单词中的亚洲字体字符(例如“it's”中的撇号)。
Sub HighlightAsian2019()
Dim aWord
For Each aWord In ActiveDocument.Words
If aWord.Font.Name = "SimSun" Then
aWord.FormattedText.HighlightColorIndex = wdTurquoise
End If
Next aWord
For Each aWord In ActiveDocument.Words
If aWord.Font.Name = "MS Mincho" Then
aWord.FormattedText.HighlightColorIndex = wdTurquoise
End If
Next aWord
End Sub
谁能帮我改进代码,以便突出显示文本中的所有 SimSun 和 MS Mincho 实例?
任何帮助将不胜感激!