打开包含表格的Word(2007/2010)文档,选择表格并右键单击,选择AutoFit - > AutoFit to Window
如何使用OpenXML SDK 2.5在C#中实现此操作?
答案 0 :(得分:12)
您可以将表格的宽度设置为页面的100%,或5000%的百分之五十。
Table table = ...
TableWidth width = table.GetDescendents<TableWidth>().First();
width.Width = "5000";
width.Type = TableWidthUnitValues.Pct;