Paragraphs
Innehåll
[
Dölj
]Cell.Paragraphs property
Får en samling stycken som är omedelbara barn till cellen.
public ParagraphCollection Paragraphs { get; }
Exempel
Visar hur man ställer in ett bord för att hålla ihop på samma sida.
Document doc = new Document(MyDir + "Table spanning two pages.docx");
Table table = doc.FirstSection.Body.Tables[0];
// Aktivera KeepWithNext för varje stycke i tabellen utom för
// de sista i den sista raden kommer att förhindra att tabellen delas upp på flera sidor.
foreach (Cell cell in table.GetChildNodes(NodeType.Cell, true).OfType<Cell>())
foreach (Paragraph para in cell.Paragraphs.OfType<Paragraph>())
{
Assert.True(para.IsInCell);
if (!(cell.ParentRow.IsLastRow && para.IsEndOfCell))
para.ParagraphFormat.KeepWithNext = true;
}
doc.Save(ArtifactsDir + "Table.KeepTableTogether.docx");
Se även
- class ParagraphCollection
- class Cell
- namnutrymme Aspose.Words.Tables
- hopsättning Aspose.Words