First of all good job on the RadRichTextBox!
I need to remove a hyperlink that is handed to me as a Span
I tried to removing it by using the RemoveHyperlink method but I just cant get the caret to move to the span's location...
how can I remove the link?
Thanks
I need to remove a hyperlink that is handed to me as a Span
I tried to removing it by using the RemoveHyperlink method but I just cant get the caret to move to the span's location...
how can I remove the link?
internal void RemoveEntity(Span span)
{
//TODO:set caret to span's positioning
ui_txtCtrl.RemoveHyperlink();
}
Thanks