RichTextBox.Document Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
öğesinin FlowDocument içeriğini RichTextBoxtemsil eden öğesini alır veya ayarlar.
public:
property System::Windows::Documents::FlowDocument ^ Document { System::Windows::Documents::FlowDocument ^ get(); void set(System::Windows::Documents::FlowDocument ^ value); };
public System.Windows.Documents.FlowDocument Document { get; set; }
member this.Document : System.Windows.Documents.FlowDocument with get, set
Public Property Document As FlowDocument
Özellik Değeri
FlowDocument içeriğini RichTextBoxtemsil eden bir nesne.
Varsayılan olarak, bu özellik boş FlowDocumentolarak ayarlanır. Özellikle, boş FlowDocument metin içermeyen tek Paragraphbir içeren tek Run içerir.
Özel durumlar
Bu özelliği null
olarak ayarlamaya çalışılır.
Bu özelliği başka RichTextBoxbir öğesinin içeriğini temsil eden bir FlowDocument olarak ayarlamaya çalışılır.
Bu özellik, bir değişiklik bloğu etkinleştirildiğinde ayarlanır.
Örnekler
Aşağıdaki örnekte bu özelliğin kullanımı gösterilmektedir.
// 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;
' Create a simple FlowDocument to serve as content.
Dim flowDoc As New FlowDocument(New Paragraph(New Run("Simple FlowDocument")))
' Create an empty, default RichTextBox.
Dim rtb As 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.
Dim rtbContents As FlowDocument = rtb.Document
Açıklamalar
FlowDocument yalnızca tek RichTextBoxbir tarafından barındırılabilir. Birden çok RichTextBox denetimin içeriği olarak tek bir FlowDocument belirtilmesi desteklenmez.