I have enabled the Click event for an ultraTextEditor, but it activates only if you click on the actual border of the text box drawn. Its as if the Editor object occludes the text area, and a Click event cannot be enabled for it, I think. Can anyone tell me how to get around this so that a click anywhere on the textbox is honored?
It is exactly what you said, there is a TextBox control positioned over the area inside the control's borders. You can get a reference to that control via UltraTextEditor like so:
UltraTextEditor ultraTextEditor = null;EditorWithText editor = ultraTextEditor.Editor as EditorWithText;TextBox textBox = editor.TextBox;
Can you please suggest me where should i write it down this code i.e. in which event?
Is the UltraTextEditor is my textbox name?
reply me ASAP.
Hi,
UltraTextEditor1 is the name of the textbox. Do you need any additional assistance regarding this sample?