gpt4 book ai didi

c# - 将 TableStyle 应用于 Word 表格

转载 作者:行者123 更新时间:2023-12-02 17:33:15 28 4
gpt4 key购买 nike

尝试使用预定义样式设置表格样式但没有任何效果。我尝试过使用一个新创建的文档和一个从保存的模板创建的文档。使用 SDK Productivity 工具,我可以看到样式存在于模板中,但未应用。我试过附加样式或直接设置它,但似乎都不起作用。

    public static void CreateWordprocessingDocument(string fileName) {

string[,] data = {
{"Texas", "TX"},
{"California", "CA"},
{"New York", "NY"},
{"Massachusetts", "MA"}
};

using (var wordDocument = WordprocessingDocument.Open(fileName, true)) {

// We need to change the file type from template to document.
wordDocument.ChangeDocumentType(WordprocessingDocumentType.Document);

var body = wordDocument.GetDocument().Body;

Table table = new Table();

TableProperties props = new TableProperties();
TableStyle tableStyle = new TableStyle { Val = "Light Shading Accent 1" };
props.TableStyle = tableStyle;
//props.Append(tableStyle);
table.AppendChild(props);

for (var i = 0; i <= data.GetUpperBound(0); i++) {
var tr = new TableRow();
for (var j = 0; j <= data.GetUpperBound(1); j++) {
var tc = new TableCell();
tc.Append(new Paragraph(new Run(new Text(data[i, j]))));
tc.Append(new TableCellProperties(new TableCellWidth { Type = TableWidthUnitValues.Auto }));
tr.Append(tc);
}
table.Append(tr);
}
body.Append(table);
wordDocument.GetDocument().Save();
}
}

最佳答案

终于明白了。我使用的是样式名称而不是样式 ID。所以声明样式的行应该如下所示:

TableStyle tableStyle = new TableStyle { Val = "LightShading-Accent1" };

关于c# - 将 TableStyle 应用于 Word 表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30223623/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com