Bookmark.SpellingErrors-Eigenschaft

Ruft eine ProofreadingErrors-Auflistung ab, die die im Bookmark-Steuerelement falsch geschriebenen Wörter darstellt.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)

Syntax

'Declaration
ReadOnly Property SpellingErrors As ProofreadingErrors
    Get
ProofreadingErrors SpellingErrors { get; }

Eigenschaftswert

Typ: Microsoft.Office.Interop.Word.ProofreadingErrors
Eine ProofreadingErrors-Auflistung, die die im Bookmark-Steuerelement falsch geschriebenen Wörter darstellt.

Beispiele

Im folgenden Codebeispiel wird dem ersten Absatz ein Bookmark-Steuerelement mit Text hinzugefügt und anschließend die Rechtschreibprüfung ausgeführt, wenn Rechtschreibfehler im Lesezeichen vorliegen.

Dieses Beispiel bezieht sich auf eine Anpassung auf Dokumentebene.

Private Sub BookmarkSpellingErrors()

    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 spellling error."

    If Bookmark1.SpellingErrors.Count > 0 Then
        Bookmark1.CheckSpelling(IgnoreUppercase:=True, _
            AlwaysSuggest:=True)
    End If

End Sub
private void BookmarkSpellingErrors()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This bookmark contains a spellling error.";

    object IgnoreUppercase = true;
    object AlwaysSuggest = true;
    if (bookmark1.SpellingErrors.Count > 0)
    {
        bookmark1.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);
    }
}

.NET Framework-Sicherheit

Siehe auch

Referenz

Bookmark Schnittstelle

Microsoft.Office.Tools.Word-Namespace