2010-09-29 41 views

回答

13

你可以標記當前文檔已經拼寫檢查:

ActiveDocument.SpellingChecked = True 

,或者您可以禁用拼寫檢查的文本範圍:

ActiveDocument.Range.NoProofing = True 

你也可以簡單的紅色disable the display波形:

ActiveDocument.ShowSpellingErrors = False 

請注意,語法檢查(綠色波形)可以做同樣的事情; 例如

ActiveDocument.GrammarChecked = True 

將當前文檔作爲已標記語法檢查,從而有效地將其禁用。

+0

@CodyGray:Thx for update! – 2017-09-13 09:10:55

3
ActiveDocument.ShowSpellingErrors = False 
相關問題