RichTextBox コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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)
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET