FlowDocument.ContentEnd Ö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.
içindeki TextPointer içeriğin sonunu temsil eden bir FlowDocumentalır.
public:
property System::Windows::Documents::TextPointer ^ ContentEnd { System::Windows::Documents::TextPointer ^ get(); };
public System.Windows.Documents.TextPointer ContentEnd { get; }
member this.ContentEnd : System.Windows.Documents.TextPointer
Public ReadOnly Property ContentEnd As TextPointer
Özellik Değeri
TextPointer içindeki FlowDocumentiçeriğin sonunu temsil eden bir.
Örnekler
Aşağıdaki örnek, içeriği öğesine FlowDocumenteklemek için özelliğini kullanırContentEnd.
// Create a new, empty FlowDocument.
FlowDocument flowDoc = new FlowDocument();
// Append an initial paragraph at the "end" of the empty FlowDocument.
flowDoc.Blocks.Add(new Paragraph(new Run(
"Since the new FlowDocument is empty at this point, this will be the initial content " +
"in the FlowDocument."
)));
// Append a line-break.
flowDoc.Blocks.Add(new Paragraph(new LineBreak()));
// Append another paragraph.
flowDoc.Blocks.Add(new Paragraph(new Run(
"This text will be in a paragraph that is inserted at the end of the FlowDocument.")));
' Create a new, empty FlowDocument.
Dim flowDocEnd As New FlowDocument()
' Append an initial paragraph at the "end" of the empty FlowDocument.
flowDocEnd.Blocks.Add(New Paragraph(New Run("Since the new FlowDocument is empty at this point, this will be the initial content " & "in the FlowDocument.")))
' Append a line-break.
flowDocEnd.Blocks.Add(New Paragraph(New LineBreak()))
' Append another paragraph.
flowDocEnd.Blocks.Add(New Paragraph(New Run("This text will be in a paragraph that is inserted at the end of the FlowDocument.")))
Açıklamalar
ContentEnd özelliği genellikle öğesinin sonuna FlowDocumentiçerik eklemek için kullanılır.
TextPointer Bu özellik tarafından döndürülen her zaman olarak ayarlanmıştır LogicalDirection LogicalDirection.Forward.