Knowledgebase Home Page  >  Thesaurus Desktop .NET
Search the Knowledge Base
How do I use Thesaurus Desktop with Infragistics' UltraTextEditor? (C#)
https://keyoti.com/kb/Default.aspx?ToDo=view&questId=197&catId=53

Options

Print this page
Email this to a friend
Like many third party controls, UltraTextEditor is essentially a wrapper for a regular .NET textbox.  Therefore you can use Thesaurus against it by accessing the inner textbox.
 
Eg.
 
Assign the Thesaurus control's TextBoxBase property in the Form constructor (or any time before you wish to launch the thesaurus)
 
thesaurus1.TextBoxBase = ((Infragistics.Win.EditorWithText) ultraTextEditor1.Editor).TextBox;

 

Start the thesaurus as normal on a menu click

thesaurus1.ShowDialog();


Related Questions:

Attachments:

No attachments were found.