本文指导如何使用 C#删除 Excel 中的分页符。它包含设置开发环境的详细信息、描述程序逻辑的步骤列表以及演示如何使用 C# 删除 Excel 中的分页符**的可立即运行的示例代码。您将学习使用不同的条件搜索分页符,并根据需要删除选定的分页符。
使用 C# 在 Excel 中删除分页符的步骤
- 使用 Aspose.Cells for .NET 将 IDE 设置为使用分页符
- 将电子表格加载到 Workbook 类对象中并访问 sheet 以删除分页符
- 访问HorizontalPageBreaksCollection对象并调用clear()方法删除所有分页符
- 对于垂直分页符重复上述步骤
- 删除手动分页符后保存输出 Excel
上述步骤定义了如何使用 C# 更改 Excel 中的分页符。通过从加载的工作簿访问目标工作表并访问分页符的水平和垂直集合来初始化该过程。调用每个集合类中的clear()方法来删除所有分页符。
使用 C# 删除 Excel 中分页符的代码
This code demonstrates how to remove the page break in Excel using C#. If you want to delete the horizontal page breaks only, you may search for all the horizontal page breaks with starting column 0 and ending column 255. 要删除垂直分页符,请搜索起始行 0 和结束行 65535 的分页符。
本文教我们消除 Excel 文件中的分页符。要在 Excel 文件中添加分页符,请参阅文章 使用 C# 在 Excel 中插入分页符。