Paragraphs
Contents
[
Hide
]Cell.Paragraphs property
Gets a collection of paragraphs that are immediate children of the cell.
public ParagraphCollection Paragraphs { get; }
Examples
Shows how to set a table to stay together on the same page.
Document doc = new Document(MyDir + "Table spanning two pages.docx");
Table table = doc.FirstSection.Body.Tables[0];
// Enabling KeepWithNext for every paragraph in the table except for the
// last ones in the last row will prevent the table from splitting across multiple pages.
foreach (Cell cell in table.GetChildNodes(NodeType.Cell, true))
foreach (Paragraph para in cell.Paragraphs)
{
Assert.True(para.IsInCell);
if (!(cell.ParentRow.IsLastRow && para.IsEndOfCell))
para.ParagraphFormat.KeepWithNext = true;
}
doc.Save(ArtifactsDir + "Table.KeepTableTogether.docx");
See Also
- class ParagraphCollection
- class Cell
- namespace Aspose.Words.Tables
- assembly Aspose.Words