RichTextBox.Document Property

Definition

Gets or sets the FlowDocument that represents the contents of the RichTextBox.

C#
public System.Windows.Documents.FlowDocument Document { get; set; }

Property Value

A FlowDocument object that represents the contents of the RichTextBox.

By default, this property is set to an empty FlowDocument. Specifically, the empty FlowDocument contains a single Paragraph, which contains a single Run which contains no text.

Exceptions

An attempt is made to set this property to null.

An attempt is made to set this property to a FlowDocument that represents the contents of another RichTextBox.

This property is set while a change block has been activated.

Examples

The following example illustrates the use of this property.

C#
// Create a simple FlowDocument to serve as content.
FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("Simple FlowDocument")));
// Create an empty, default RichTextBox.
RichTextBox rtb = new RichTextBox();
// This call sets the contents of the RichTextBox to the specified FlowDocument.
rtb.Document = flowDoc;
// This call gets a FlowDocument representing the contents of the RichTextBox.
FlowDocument rtbContents = rtb.Document;

Remarks

A FlowDocument may only be hosted by a single RichTextBox. Specifying a single FlowDocument as the contents of multiple RichTextBox controls is not supported.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10