Hi, I want ultraformatted text editor in such a way that the link text in that could not be deleted. It should be read only. Only simple text can be deleted. Has anyone faced this kind of issue. Please let me know the solutions. What can be done?
Hi,
I'm not sure I understand what you want. Are you saying that you want some of the text in the UltraFormattedTextEditor to be editable and some of it to be read-only? There's no way to do that.
If you want the entire thing to be read-only, then that's easy:
this.ultraFormattedTextEditor1.ReadOnly = true;
Thanks a lot Mike for reply. But I really want to do that. Link text readonly(Link text should not be editable in any way) and plain text editable. Is there any other way to achieve this?
No, I know of no way to do that. I've never heard of any text-based controls that allows you to edit some text and not other parts of the same text. Maybe you need to put the link into a separate control and the editable text in another.