我正在使用C#动态创建PowerPoint,并且需要创建具有可变行和列的表以下代码创建了该表。

objShape = MySlide.Shapes.AddTable(10, 5, ConvertCmtoPx(4), ConvertCmtoPx(2.5), ConvertCmtoPx(15), ConvertCmtoPx(10));
table = objShape.Table;

for (int i = 1; i <= table.Rows.Count; i++)
{
  for (int j = 1; j <= table.Columns.Count; j++)
  {
    table.Cell(i, j).Shape.Fill.Solid.SolidFill.BackColor.RGB = 0xffffff;
    table.Cell(i, j).Shape.TextFrame.TextRange.Font.Size = 12;
    // table.Cell(i, j).Shape.Line.Style.BackColor.RGB = 0xFF3300;
    table.Cell(i, j).Shape.TextFrame.TextRange.ParagraphFormat.Alignment = PowerPoint.PpParagraphAlignment.ppAlignCenter;
    table.Cell(i, j).Shape.TextFrame.VerticalAnchor = MsoVerticalAnchor.msoAnchorMiddle;
    table.Cell(i, j).Shape.TextFrame.TextRange.Text = string.Format("[{0},{1}]", i, j);
  }

}




现在,如何设置表格边框样式?

最佳答案

您可以在for循环中添加以下代码段,以调整单元格边框的粗细,线型,颜色,阴影等。除了DashStyle,ForeColor等之外,还有很多其他项目可供选择。

table.Cell(i, j).Borders[Microsoft.Office.Interop.PowerPoint.PpBorderType.ppBorderLeft].DashStyle = MsoLineDashStyle.msoLineLongDashDot;
table.Cell(i, j).Borders[Microsoft.Office.Interop.PowerPoint.PpBorderType.ppBorderLeft].ForeColor.RGB = 0xff00ff;
table.Cell(i, j).Borders[Microsoft.Office.Interop.PowerPoint.PpBorderType.ppBorderLeft].Weight = 1.0f;

关于c# - 如何使用C#互操作库在PowerPoint中添加表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42360305/

10-10 21:55