Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
315
How to fully enable click event in ultraTextEditor?
posted

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?

Parents
No Data
Reply
  • 69832
    Verified Answer
    Offline posted

    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;

Children