Zur Startseite

JRSpellChecker

Zur Homepage

DocumentSpellChecked(ByVal CheckedWords As Long, ByVal IncorrectSpells As Long)

Description:

this event will be fired after SpellCheckDocument.

       
         

ico_weitere Return value:


CheckedWords


IncorrectSpells

Number of spelled words.

Number of incorrect spells.

Example:


    Private Sub JRSpell1_DocumentSpellChecked(CheckedWords As Long, IncorrectSpells As Long)
    Caption = "Number of word " +
    Str$(CheckedWords) + " / Fehler " + Str$(IncorrectSpells)
    End Sub