Paragraphs
Contenuti
[
Nascondere
]Cell.Paragraphs property
Ottiene una raccolta di paragrafi che sono figli immediati della cella.
public ParagraphCollection Paragraphs { get; }
Esempi
Mostra come apparecchiare una tavola per stare insieme sulla stessa pagina.
Document doc = new Document(MyDir + "Table spanning two pages.docx");
Table table = doc.FirstSection.Body.Tables[0];
// Abilita KeepWithNext per ogni paragrafo nella tabella ad eccezione di
// gli ultimi nell'ultima riga impediranno alla tabella di dividersi su più pagine.
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");
Guarda anche
- class ParagraphCollection
- class Cell
- spazio dei nomi Aspose.Words.Tables
- assemblea Aspose.Words