本文整理汇总了C#中Aspose.Words.Document.ExpandTableStylesToDirectFormatting方法的典型用法代码示例。如果您正苦于以下问题:C# Document.ExpandTableStylesToDirectFormatting方法的具体用法?C# Document.ExpandTableStylesToDirectFormatting怎么用?C# Document.ExpandTableStylesToDirectFormatting使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Aspose.Words.Document
的用法示例。
在下文中一共展示了Document.ExpandTableStylesToDirectFormatting方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TableStyleToDirectFormatting
public void TableStyleToDirectFormatting()
{
//ExStart
//ExFor:Document.ExpandTableStylesToDirectFormatting
//ExId:TableStyleToDirectFormatting
//ExSummary:Shows how to expand the formatting from styles onto the rows and cells of the table as direct formatting.
Aspose.Words.Document doc = new Aspose.Words.Document(MyDir + "Table.TableStyle.docx");
// Get the first cell of the first table in the document.
Table table = (Table)doc.GetChild(NodeType.Table, 0, true);
Cell firstCell = table.FirstRow.FirstCell;
// First print the color of the cell shading. This should be empty as the current shading
// is stored in the table style.
Color cellShadingBefore = firstCell.CellFormat.Shading.BackgroundPatternColor;
Console.WriteLine("Cell shading before style expansion: " + cellShadingBefore.ToString());
// Expand table style formatting to direct formatting.
doc.ExpandTableStylesToDirectFormatting();
// Now print the cell shading after expanding table styles. A blue background pattern color
// should have been applied from the table style.
Color cellShadingAfter = firstCell.CellFormat.Shading.BackgroundPatternColor;
Console.WriteLine("Cell shading after style expansion: " + cellShadingAfter.ToString());
//ExEnd
doc.Save(MyDir + "Table.ExpandTableStyleFormatting Out.docx");
Assert.AreEqual(Color.Empty, cellShadingBefore);
Assert.AreNotEqual(Color.Empty, cellShadingAfter);
}
示例2: InsertTableWithTableStyle
public void InsertTableWithTableStyle()
{
//ExStart
//ExFor:Table.StyleIdentifier
//ExFor:Table.StyleOptions
//ExFor:TableStyleOptions
//ExFor:Table.AutoFit
//ExFor:AutoFitBehavior
//ExId:InsertTableWithTableStyle
//ExSummary:Shows how to build a new table with a table style applied.
Aspose.Words.Document doc = new Aspose.Words.Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Table table = builder.StartTable();
// We must insert at least one row first before setting any table formatting.
builder.InsertCell();
// Set the table style used based of the unique style identifier.
// Note that not all table styles are available when saving as .doc format.
table.StyleIdentifier = StyleIdentifier.MediumShading1Accent1;
// Apply which features should be formatted by the style.
table.StyleOptions = TableStyleOptions.FirstColumn | TableStyleOptions.RowBands | TableStyleOptions.FirstRow;
table.AutoFit(AutoFitBehavior.AutoFitToContents);
// Continue with building the table as normal.
builder.Writeln("Item");
builder.CellFormat.RightPadding = 40;
builder.InsertCell();
builder.Writeln("Quantity (kg)");
builder.EndRow();
builder.InsertCell();
builder.Writeln("Apples");
builder.InsertCell();
builder.Writeln("20");
builder.EndRow();
builder.InsertCell();
builder.Writeln("Bananas");
builder.InsertCell();
builder.Writeln("40");
builder.EndRow();
builder.InsertCell();
builder.Writeln("Carrots");
builder.InsertCell();
builder.Writeln("50");
builder.EndRow();
doc.Save(ExDir + "DocumentBuilder.SetTableStyle Out.docx");
//ExEnd
// Verify that the style was set by expanding to direct formatting.
doc.ExpandTableStylesToDirectFormatting();
Assert.AreEqual("Medium Shading 1 Accent 1", table.Style.Name);
Assert.AreEqual(TableStyleOptions.FirstColumn | TableStyleOptions.RowBands | TableStyleOptions.FirstRow, table.StyleOptions);
Assert.AreEqual(189, table.FirstRow.FirstCell.CellFormat.Shading.BackgroundPatternColor.B);
Assert.AreEqual(Color.White.ToArgb(), table.FirstRow.FirstCell.FirstParagraph.Runs[0].Font.Color.ToArgb());
Assert.AreNotEqual(Color.LightBlue.ToArgb(), table.LastRow.FirstCell.CellFormat.Shading.BackgroundPatternColor.B);
Assert.AreEqual(Color.Empty.ToArgb(), table.LastRow.FirstCell.FirstParagraph.Runs[0].Font.Color.ToArgb());
}