IsInCell
Contenu
[
Cacher
]Paragraph.IsInCell property
Vrai si ce paragraphe est un enfant immédiat deCell
; faux sinon.
public bool IsInCell { get; }
Exemples
Montre comment dresser une table pour rester ensemble sur la même page.
Document doc = new Document(MyDir + "Table spanning two pages.docx");
Table table = doc.FirstSection.Body.Tables[0];
// Activation de KeepWithNext pour chaque paragraphe du tableau à l'exception du
// les derniers de la dernière ligne empêcheront le tableau de se diviser sur plusieurs pages.
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");
Voir également
- class Paragraph
- espace de noms Aspose.Words
- Assemblée Aspose.Words