FlowDocument.ContentEnd Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene un objeto TextPointer que representa el final del contenido de FlowDocument.
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
Valor de propiedad
Un objeto TextPointer que representa el final del contenido de FlowDocument.
Ejemplos
En el ejemplo siguiente se usa la ContentEnd propiedad para anexar contenido a .FlowDocument
// 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.")))
Comentarios
La ContentEnd propiedad se usa a menudo para anexar contenido al final de .FlowDocument
El TextPointer devuelto por esta propiedad siempre tiene establecido LogicalDirection.Forwarden LogicalDirection .