C#OpenXML(Word)表AutoFit到Window

时间:2013-08-02 20:13:20

标签: c# ms-word openxml openxml-sdk

打开包含表格的Word(2007/2010)文档,选择表格并右键单击,选择AutoFit - > AutoFit to Window

如何使用OpenXML SDK 2.5在C#中实现此操作?

1 个答案:

答案 0 :(得分:12)

您可以将表格的宽度设置为页面的100%,或5000%的百分之五十。

Table table = ...

TableWidth width = table.GetDescendents<TableWidth>().First();
width.Width = "5000";
width.Type = TableWidthUnitValues.Pct;