I have RTF box in my form. In the message i bolded selected words and changed color as well.
I've a req to underline email id in the message. Is there existing method in RTF to achieve it els what is the way?
RichTextBox _RichTextBox = new RichTextBox();
_RichTextBox.Find("Important Notice");
_RichTextBox.SelectionColor = Color.Red;
and also i would like to add an information icon i
front of my message. could you please guide for this both.