Interface TextControl::isMisspelled

 


Description

In BBj 7.0 and higher, this method returns whether a word is considered to be misspelled based on the current settings in this spell checked text control.

Syntax

Return Value

Method

boolean

isMisspelled(string word)

Parameters

Variable

Description

word

The word to spell check.

Return Value

Returns whether the word is considered to be misspelled based on the current settings in this spell checked text control.

Remarks

None.

Example

rem ' isMisspelled

SYSGUI=UNT
OPEN (SYSGUI)"X0"

sysgui! = BBjAPI().getSysGui()
window! = sysgui!.addWindow(200,200,400,400,"Spell-Check isMisspelled",$00010003$)
checkbox! = window!.addCheckBox(101,25,25,150,30,"Toggle SpellCheck",$0004$)
cedit! = window!.addCEdit(102,25,50,350,325,"",$0100$)
cedit!.setLineWrap(1)

gosub InitText
gosub setSpellChecked

word$="Alice"; gosub isMisspelled
word$="begining"; gosub isMisspelled

CALLBACK(ON_CHECK_ON,setSpellChecked,checkbox!.getContextID(),checkbox!.getID())
CALLBACK(ON_CHECK_OFF,unsetSpellChecked,checkbox!.getContextID(),checkbox!.getID())
CALLBACK(ON_CLOSE,APP_CLOSE,sysgui!.getContext())

REM Process Events
PROCESS_EVENTS

APP_CLOSE:
RELEASE

isMisspelled:
  print "'",word$,"' ",iff(cedit!.isMisspelled(word$),"is","is not")," misspelled."
return

setSpellChecked:
  Locale$ = stbl("!LOCALE","en_GB")
  cedit!.setSpellChecked(1)
return

unsetSpellChecked:
  cedit!.setSpellChecked(0)
return

InitText:
  Text! = new java.util.HashMap()
  while 1
    dread text$,err=*break
    cedit!.addParagraph(-1,text$)
  wend
return

data "CHAPTER I"
data "Down the Rabbit-Hole"
data "Alice was begining to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, 'and what is the use of a book,' thought Alice 'without pictures or conversation?'"

data "So she was considerring in her own mind (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her."

data "There was nothing so very remarkable in that; nor did Alice think it so very much out of the way to hear the Rabbit say to itself, 'Oh dear! Oh dear! I shall be late!' (when she thought it over afterwards, it occured to her that she ought to have wondered at this, but at the time it all seemed quite natural); but when the Rabbit actually took a watch out of its waistcoat-pocket, and looked at it, and then hurried on, Alice started to her feet, for it flashed across her mind that she had never before seen a rabbit with either a waistcoat-pocket, or a watch to take out of it, and burning with curiousity, she ran across the field after it, and fortunatly was just in time to see it pop down a large rabbit-hole under the hedge."

See Also

BBjAPI

BBjSysGui

BBjControl

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.