I have NetAdvantage 2006 Volume 2, and I am creating a simple html text editor in C# 2.0 Windows Forms using the System.Windows.Forms.WebBrowser control. Is there a way that the UltraSpellChecker can be used to check the inner text in html that would not display the tags in the Spelling dialog box?
John
This is not supported. You can submit a feature request to the support group: http://devcenter.infragistics.com/Protected/RequestFeature.aspx.
You can also implement your own spell check dialog by inheriting from SpellCheckDialogBase. To use your derived dialog, you would need to use a derived UltraSpellChecker and override CreateSpellCheckDialog, returning an instance of your derived dialog.
Has this feature been added to the latest infragistics release?
If not, could the UltraSpellChecker work with a control that inherits from WebBrowser and the "ISpellCheckTarget" interface?
If so, can you please point me to a code example that implements the ISpellCheckTarget interface?
Which controls in the infragistics framwork uses this interface (I can use reflector to review the implementation).
Thanks,Garry