RapidSpell Desktop .NET主要功能是為.NET Windows Forms應用程序添加拼寫檢查功能。 RapidSpell Desktop .NET的強大之處在于它可以應用于任何的文本應用程序之中,電子郵件、word文檔等都在它的支持范圍之內。令人興奮的是,實現這樣實用的功能應用程序員需要做的只是編寫兩行代碼即可。值得一提的是,我們還為用戶提供了功能強勁的拼寫檢查應用程序接口(API),使用它,可以幫助用戶在非圖形用戶界面上下文程序中加入拼寫檢查功能(如DOS)。
Integrate (as-you-type and dialog) spell checking functionality into .NET Windows applications. Add spell checking value to any textual application (email, word processor etc) with a couple of lines of code. RapidSpell Desktop can also be used in non GUI contexts using it's spell checking API. Written for dotNET in C#, RapidSpell uses combined and separate 140,000 word U.S. & U.K. dictionaries (and user dictionary), multi-threaded GUI and a powerful suggestion engine. Canadian & Australian English dictionaries are available free on request.
Details
RapidSpell provides 3 spelling components to add spell check functionality to your applications; RapidSpellDialog (dialog based checker control), RapidSpellAsYouType (as you type check control) and RapidSpellChecker (core spell checker class).
RapidSpellDialog provides all the usual GUI features, add, change, change all, ignore, ignore all, smart suggestions and double word detection. It interactively checks ANY TextBoxBase derived component such as TextBox and RichTextBox aswell as 3rd Party Controls such as "TX Text Control". Checks selections, whole documents with wrap at end, highlights errors, accepts manual corrections, allows user to edit main document during spell check and also supports a user dictionary.
RapidSpellAsYouType functions like your users will expect. Spelling errors are highlighted as the user types, cuts/pastes, block deletes and loads files. This is the first .NET control to persistently highlight errors as the user continues to work (type, scroll etc). Right-clicking on a highlight presents a popup context menu with suggestions and options to 'Ignore All' or 'Add' to user dictionary. Works with TextBox and RichTextBox subclassed controls included in the product. Only one instance of RapidSpellAsYouType is needed for all text boxes on a form.
RapidSpellChecker provides core spell checker functionality, which means it is suitable for server applications as well as any console application. It supports a user dictionary and run-time switchable main dictionaries. It has been clocked at 70,000 words/sec on a standard 1GHz PC.
RapidSpell includes Dict Manager free, which allows complete customization of the dictionaries.
Technical
The API was designed to provide for easy customisation. The GUI can be redesigned by simply extending its class and overriding the design method (an example of this is included). The spell checker engine is 'decoupled' from the GUI making it possible to use custom word parsers with the GUI.
The RapidSpellDialog and RapidSpellAsYouType controls can be set to check multiple text boxes on a form, this means that only one instance is used which speeds up design and improves efficiency.
The non GUI component provides core functionality and ease of use - you pass the text you want checked and then iterate through each misspelled word finding suggestions and correcting as you go. You have access to the corrected text at any time.
Dict Manager, allows RapidSpell Dict files to be customized and created using other word lists.
RapidSpell Desktop provides a simple interface specification which allows 3rd Party Controls to be used with the Dialog checker. This simple mechanism means it is possible to use just about any Control with RapidSpell Desktop, the full product includes an 'adapter' controls for the popular "TX Text Control" and Infragistics' "UltraTextEditor".
Two powerful suggestions engines are used to find good suggestions for words, including an exclusive 'sounds-like' algorithm. RapidSpell Desktop was designed to .NET 1.0 and .NET 1.1 specification.