RichTextBox Constructor (FlowDocument)
.NET Framework 4
Initializes a new instance of the RichTextBox class, adding a specified FlowDocument as the initial content.
Assembly: PresentationFramework (in PresentationFramework.dll)
Parameters
- document
- Type: System.Windows.Documents.FlowDocument
A FlowDocument to be added as the initial contents of the new RichTextBox.
The following example illustrates use of this constructor.
// Create a simple FlowDocument to serve as the content input for the construtor. FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("Simple FlowDocument"))); // After this constructor is called, the new RichTextBox rtb will contain flowDoc. RichTextBox rtb = new RichTextBox(flowDoc);
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.