使用 C# 关闭 word 表中的自动调整
Turn off autofit in word tables using C#
如何使用 C# 关闭 word 表中的自动调整?我用 class
DocumentFormat.OpenXml.Wordprocessing.Table.
我的意思是这个选项:
我想取消勾选这个。
TableProperties tp = new TableProperties(
new TableLayout { Type = TableLayoutValues.Fixed }
);
Table t = new Table(tp);
确保将表格布局 属性 添加到表格属性 在 添加表格样式等后
如何使用 C# 关闭 word 表中的自动调整?我用 class
DocumentFormat.OpenXml.Wordprocessing.Table.
我的意思是这个选项:
我想取消勾选这个。
TableProperties tp = new TableProperties(
new TableLayout { Type = TableLayoutValues.Fixed }
);
Table t = new Table(tp);
确保将表格布局 属性 添加到表格属性 在 添加表格样式等后