最近在用OpenXml SDK寫Word檔案,
想請問一下有經驗的大大,
1.請問如何開啟檔案之後將檔案清空再寫入
2.請問如何將整個表格水平置中
3.請問如何將表格的儲存格中的文字水平垂直置中
先感謝大大了,
附上相關程式碼:
using (WordprocessingDocument doc = WordprocessingDocument.Open(filepath, true))
{
Table table = new Table();
TableRow tr = new TableRow();
TableCell tc1 = new TableCell();
tc1.Append(new TableCellProperties(
new TableCellWidth() { Type = TableWidthUnitValues.Dxa, Width = "2400"}));
tc1.Append(new Paragraph(new Run(new Text("some text"))));
tr.Append(tc1);
table.Append(tr);
doc.MainDocumentPart.Document.Body.Append(table);
}