Message-ID: <850566111.8461.1711647639571.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8460_1612292451.1711647639571" ------=_Part_8460_1612292451.1711647639571 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Font.NoProofChecking

Font.NoProofChecking

Description

Sets or returns a=20 boolean that represents if Word will not perform grammar and s= pell checking on a character run when the document is opened.=20
C#
=20
public boolean NoProofChecking{ get; set; }=20
=20
vb.net
=20
Public Property NoProofChecking() As Boolean=20
=20

Remarks

MS Word equivalent: No= ne=20

Examples

=20
C#
=20
          //--- Return NoProofChecking
          bool noProofChecking =3D oFont.NoProofChecking;

          //--- Set NoProofChecking to not perform grammar and spell check
          oFont.NoProofChecking =3D true;
        
=20
vb.net
=20
          '--- Return NoProofChecking
          Dim noProofChecking As Boolean =3D oFont.NoProofChecking

          '--- Set NoProofChecking to not perform grammar and spell check
          oFont.NoProofChecking =3D True
        
=20
------=_Part_8460_1612292451.1711647639571--