The checker engine to use, this object must implement the ICheckerEngine interface, allows
customization or replacement of the spell checker.
| C# | Visual Basic | Visual C++ |
ICheckerEngine CheckerEngine { get; set; }
Property CheckerEngine As ICheckerEngine
property ICheckerEngine^ CheckerEngine { ICheckerEngine^ get (); void set (ICheckerEngine^ value); }
Use this property to replace the object used to perform checking, it is not necessary to replace
this with a spell checker, any type of word parser can be used. For example an abbreviations checker could
be written to replace common words with abbreviations.
Caveat: Most properties in RapidSpellGUI are mirrors of properties in ICheckerEngine,
setting a CheckerEngine AFTER setting properties in RapidSpellGUI will overwrite those property values
with the values of CheckerEngine.