Compartilhar via


Como: Manipular Elementos de Conteúdo de Fluxo através da Propriedade Blocks

These examples demonstrate some of the more common operations that can be performed on flow content elements through the Blocks property. This property is used to add and remove items from BlockCollection. Flow content elements that feature a Blocks property include:

These examples happen to use Section as the flow content element, but these techniques are applicable to all elements that host a flow content element collection.

Exemplo

The following example creates a new Section and then uses the Add method to add a new Paragraph to the Section contents.

            Dim secx As New Section()
            secx.Blocks.Add(New Paragraph(New Run("A bit of text content...")))
Section secx = new Section();
secx.Blocks.Add(new Paragraph(new Run("A bit of text content...")));

The following example creates a new Paragraph element and inserts it at the beginning of the Section.

            Dim parx As New Paragraph(New Run("Text to insert..."))
            secx.Blocks.InsertBefore(secx.Blocks.FirstBlock, parx)
Paragraph parx = new Paragraph(new Run("Text to insert..."));
secx.Blocks.InsertBefore(secx.Blocks.FirstBlock, parx);

The following example gets the number of top-level Block elements contained in the Section.

            Dim countTopLevelBlocks As Integer = secx.Blocks.Count
int countTopLevelBlocks = secx.Blocks.Count;

The following example deletes the last Block element in the Section.

            secx.Blocks.Remove(secx.Blocks.LastBlock)
secx.Blocks.Remove(secx.Blocks.LastBlock);

The following example clears all of the contents (Block elements) from the Section.

            secx.Blocks.Clear()
secx.Blocks.Clear();

Consulte também

Tarefas

Como: Manipulate a Table's Row Groups through the RowGroups Property

Como: Manipular as colunas de uma tabela por meio da propriedade Columns

Como: Manipulate a Table's Row Groups through the RowGroups Property

Referência

BlockCollection

InlineCollection

ListItemCollection

Conceitos

Flow Document Overview