C# Aspose Word Table : 如何为单元格文本添加上划线样式

C# Aspose Word Table : How to add Overline style to a Cell text

我是 Aspose.Words 的新手,特别是 .Net 表格,正在为客户重新创建一些文档,我想创建一个 table 动态地包含多个行和列, 我的问题是如何使样式在单元格中的文本上划线(如下图:ex:黄色单元格)?

我在文档中搜索了太多,但我只找到了 pdf 的样式,我需要它用于 Aspose Word!谁能帮帮我!!!

您可以通过设置 Paragraph 的上边框来实现。例如看下面的代码:

Document doc = new Document(@"C:\Temp\in.docx");

Table table = doc.FirstSection.Body.Tables[0];
foreach (Paragraph p in table.Rows[2].Cells[3].Paragraphs)
    p.ParagraphFormat.Borders.Top.LineWidth = 1;

doc.Save(@"C:\Temp\out.docx");