本文介绍 如何使用 C# 在 Word 中自动调整表格。它包括 IDE 设置、操作步骤列表,以及 使用 C# 调整 Word 表格的示例代码。
使用 C# 在 Word 中自动调整表格的步骤
- 配置环境以使用 Aspose.Words for .NET
- 将包含表格的 Word 输入文件加载到 Document 类中
- 从加载的文档中获取目标子节点
- 将节点转换为 Table 对象
- 使用所需的自动调整模式调用 AutoFit() 方法
- 保存 调整后的 Word 输出文件
上述步骤介绍了 如何使用 C# 在 Word 中调整表格大小。加载 Word 文档后,选择目标表格(通过索引),将其转换为 Table 对象,并调用 AutoFit() 方法以选择适当的调整方式。
C# 代码示例:调整 Word 表格以适应页面
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Aspose.Words; | |
using Aspose.Words.Tables; | |
License lic = new License(); | |
lic.SetLicense("license.lic"); | |
Document doc = new Document("Table.docx"); | |
Table table = (Table)doc.GetChild(NodeType.Table, 0, true); | |
table.AutoFit(AutoFitBehavior.AutoFitToWindow); | |
doc.Save("AdjustedTable.docx"); |
此代码展示了 如何使用 C# 在 Word 中自动调整表格。默认情况下,表格宽度会根据页面宽度进行调整。您还可以选择调整列宽以适应内容,或者保持固定宽度。
如果您想在 Word 文档中创建新的表格,请参考文章:如何使用 C# 在 Word 文档中创建表格。