aspose word table设置BackgroundPatternColor

时间:2017-12-03 06:24:14

标签: c# aspose.words

我在Aspose Words模板中有一个现有的表,我想更改行内的背景图案颜色。我怎样才能实现它?

public static void SetColor(ref Table table)
{
    Row row =table.Rows[1];
}

1 个答案:

答案 0 :(得分:1)

public static void SetColor(ref Table table)
{
     Row t = table.Rows[1];
     foreach (Cell c in t.GetChildNodes(NodeType.Cell, true))
     {
          c.CellFormat.Shading.BackgroundPatternColor = Color.FromArgb(198, 217, 241);
     }
}