Dear all,
How to disable the action of paste in the textbox??
Hello,
I am just checking about the progress of this issue. Please let me know If you need my further assistance on this.
Could you please try the following code sample and see if it helps:
private void ultraTextEditor1_ControlAdded(object sender, ControlEventArgs e) { EmbeddableTextBoxWithUIPermissions textbox = (EmbeddableTextBoxWithUIPermissions)e.Control; textbox.ShortcutsEnabled = false; }
Please let me know if the above is good enough for you.