Bookmark.NoProofing, propriété
Obtient ou définit une valeur indiquant si le vérificateur d'orthographe et de grammaire ignore le texte du contrôle Bookmark.
Espace de noms : Microsoft.Office.Tools.Word
Assembly : Microsoft.Office.Tools.Word (dans Microsoft.Office.Tools.Word.dll)
Syntaxe
'Déclaration
Property NoProofing As Integer
int NoProofing { get; set; }
Valeur de propriété
Type : System.Int32
0 si le vérificateur d'orthographe et de grammaire n'ignore pas le texte du contrôle Bookmark ; 1 si le vérificateur d'orthographe et de grammaire ignore le texte du contrôle Bookmark ; wdUndefined si le vérificateur d'orthographe et de grammaire n'ignore qu'une partie du texte du contrôle Bookmark.
Exemples
L'exemple de code suivant ajoute au premier paragraphe un contrôle Bookmark avec un texte mal orthographié et donne à la propriété NoProofing du signet la valeur true. Lorsque le vérificateur recherche les fautes d'orthographe dans le document, le texte mal orthographié du signet est ignoré.
Cet exemple illustre une personnalisation au niveau du document.
Private Sub BookmarkNoProofing()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
Bookmark1.Text = "This bookmark contains a mispellling."
Bookmark1.InsertAfter(" This text also contains a mispelling.")
Bookmark1.NoProofing = True
Me.CheckSpelling(IgnoreUppercase:=True, AlwaysSuggest:=True)
End Sub
private void BookmarkNoProofing()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[1].Range,
"bookmark1");
int WordTrue = 1;
bookmark1.Text = "This bookmark contains a mispellling.";
bookmark1.InsertAfter(" This text also contains a mispelling.");
bookmark1.NoProofing = WordTrue;
object IgnoreUppercase = true;
object AlwaysSuggest = true;
this.CheckSpelling(ref missing, ref IgnoreUppercase,
ref AlwaysSuggest, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing,
ref missing, ref missing);
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.