Hi,
in the RichTextBox-control which comes with visual studio I can select text from the textbox content with the select method: "Select(Int32, Int32), Selects a range of text in the text box. (Inherited from TextBoxBase.)"
and I can retrieve the selected text with the property 'SelectedText' -"Gets or sets the selected text within the RichTextBox. (Overrides TextBoxBase.SelectedText.)"
How can I accomplish this with the UltraFormattedTextEditor?
I think I maybe solved it myself.
I used the "EditInfo" Property
Hello,
Yes, you should use FormattedTextEditor.EditInfo.Editor.SelectedText, and here is a useful link to our online documentation about this property
http://help.infragistics.com/Help/Doc/WinForms/2012.1/CLR2.0/HTML/Infragistics2.Win.Misc.v12.1~Infragistics.Win.FormattedLinkLabel.UltraFormattedTextEditor~EditInfo.html
Thank you for using Infragistics Components.