Zur Startseite

JRSpellChecker

Zur Homepage

WordBookName () As String

Function:

set the current dictionary to load or returns the name of them.
See the chapter
LoadWordbook.

       

ico_syntax   Syntax:

JRSpell1.WordBookName = mywordbook

         

ico_weitere Return value:


Nothing

Fires no event.

Example:

    Private Sub Form_Load()
    Dim
    xrights As registrationc
      'Set the Language for User-Interface
      JRSpell1.UILanguage =
    english
      JRSpell1.SelectionColor =
    vbred
      JRSpell1.WordBookName = ""
      If JRSpell1.LoadWordbook(1) = False Then
        JRSpell1.WordBookName = "
    en_gb.jsp"
        If JRSpell1.LoadWordbook(0) = False Then
            MsgBox "there was no dictionary to load"
        End If
      End If
    End Sub