Click here to Skip to main content
15,895,538 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I have searched many articles on google for this problem but i didn't get solution for it
please anyboby help me....
Posted

1 solution

C#
string GetString(RichTextBox rtb)
{
    var textRange = new TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd);
    return textRange.Text;
}


Cheers,
Edo
 
Share this answer
 
Comments
Member 9829394 13-Feb-13 4:42am    
thanks buddy

i have one more Question how to display text in RichTextbox from database
Joezer BH 17-Mar-13 0:53am    
This code will replace the single character at the index with "ola".

Code Snippet
richTextBoxEditor.SelectionStart = index;
richTextBoxEditor.SelectionLength = 1;
richTextBoxEditor.SelectedText = "ola";

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900