Description
Sets or returns aboolean
that represents if Word will not perform grammar and spell checking on a character run when the document is opened.
C#
public boolean NoProofChecking{ get ; set ; } |
vb.net
Public Property NoProofChecking() As Boolean |
Remarks
MS Word equivalent: NoneExamples
C#
//--- Return NoProofChecking bool noProofChecking = oFont.NoProofChecking; //--- Set NoProofChecking to not perform grammar and spell check oFont.NoProofChecking = true ; |
vb.net
'--- Return NoProofChecking Dim noProofChecking As Boolean = oFont.NoProofChecking '--- Set NoProofChecking to not perform grammar and spell check oFont.NoProofChecking = True |