I am trying to set/get the text of my RichTextBox, but Text is not among list of its properties when I want to get test.Text...

I am using code behind in C# (.net framework 3.5 SP1)

RichTextBox test = new RichTextBox();

cannot have test.Text(?)

Do you know how come it can be possible ?

link|improve this question
feedback

8 Answers

There was a confusion between RichTextBox in System.Windows.Forms and in System.Windows.Control

I am using the one in the Control as I am using WPF. In there, there is no Text property, and in order to get a text, I should have used this line:

string myText = new TextRange(transcriberArea.Document.ContentStart, transcriberArea.Document.ContentEnd).Text; 

thanks

link|improve this answer
feedback

The WPF RichTextBox has a Document property for setting the content a la MSDN:

// Create a FlowDocument to contain content for the RichTextBox.
        FlowDocument myFlowDoc = new FlowDocument();

        // Add paragraphs to the FlowDocument.
        myFlowDoc.Blocks.Add(new Paragraph(new Run("Paragraph 1")));
        myFlowDoc.Blocks.Add(new Paragraph(new Run("Paragraph 2")));
        myFlowDoc.Blocks.Add(new Paragraph(new Run("Paragraph 3")));
        RichTextBox myRichTextBox = new RichTextBox();

        // Add initial content to the RichTextBox.
        myRichTextBox.Document = myFlowDoc;

You can just use the AppendText method though if that's all you're after.

Hope that helps.

link|improve this answer
feedback

there are two types of RichTextBox controls, one for Win Forms, and one for WPF. There is no Text Property in the WPF version. The implementations between the two are totally different.

link|improve this answer
1  
could somebody describe or point out a link that shows the differences between the two ? – Manoj Jun 30 '11 at 3:24
feedback
string GetString(RichTextBox rtb)
{
    var textRange = new TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd);
    return textRange.Text;
}
link|improve this answer
feedback

There surely is a Text property to the RichTextBox control. Do you get a compilation error when you try to access it, or something else?

The Text property gets and sets the plain text contained in the control (that is, without formatting). There is also an Rtf property, which takes and returns RTF. That may be what you want or expect.

link|improve this answer
feedback

There is no Text property in the WPF Rich Text Box control.

Here is one way to get all the text out of it:

TextRange allTextRange = new TextRange(myRTB.Document.ContentStart, myRTB.Document.ContentEnd);

string allText = allTextRange.Text;

link|improve this answer
feedback

"Extended WPF Toolkit" now provides a richtextbox with the Text property.

You can get or set the text in different formats (XAML, RTF and plaintext).

Here is the link: Extended WPF Toolkit RichTextBox

link|improve this answer
feedback

According to this it does have a Text property

http://msdn.microsoft.com/en-us/library/system.windows.forms.richtextbox_members.aspx

You can also try the "Lines" property if you want the text broken up as lines.

link|improve this answer
2  
This is WPF, not Win Forms. – subkamran Jul 29 '10 at 15:10
feedback

Your Answer

 
or
required, but never shown