RichTextBox コンストラクター

定義

RichTextBox クラスの新しいインスタンスを初期化します。

オーバーロード

RichTextBox()

RichTextBox クラスの新しい既定のインスタンスを初期化します。

RichTextBox(FlowDocument)

RichTextBox クラスの新しいインスタンスを初期化し、指定した FlowDocument を初期コンテンツとして追加します。

RichTextBox()

RichTextBox クラスの新しい既定のインスタンスを初期化します。

public:
 RichTextBox();
public RichTextBox ();
Public Sub New ()

注釈

このコンストラクターは、Document プロパティに関連付けられている空 FlowDocument の を作成します。 具体的には、空の FlowDocument には Paragraph が 1 つあり、その中にテキストを含まない Run が 1 つあります。

適用対象

RichTextBox(FlowDocument)

RichTextBox クラスの新しいインスタンスを初期化し、指定した FlowDocument を初期コンテンツとして追加します。

public:
 RichTextBox(System::Windows::Documents::FlowDocument ^ document);
public RichTextBox (System.Windows.Documents.FlowDocument document);
new System.Windows.Controls.RichTextBox : System.Windows.Documents.FlowDocument -> System.Windows.Controls.RichTextBox
Public Sub New (document As FlowDocument)

パラメーター

document
FlowDocument

新しい FlowDocument の初期コンテンツとして追加する RichTextBox

次の例は、このコンストラクターの使用を示しています。

// 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);
' Create a simple FlowDocument to serve as the content input for the construtor.
Dim flowDoc As New FlowDocument(New Paragraph(New Run("Simple FlowDocument")))
' After this constructor is called, the new RichTextBox rtb will contain flowDoc.
Dim rtb As New RichTextBox(flowDoc)

適用対象