我刚刚开始使用.NET的Aspose.Cell的库,但是在查找有关如何为输出Excel工作表启用数据过滤的文档时遇到了一些问题。

我了解此功能已内置在Aspose.Cells.GridWeb中,并在此处进行了记录(http://www.aspose.com/docs/display/cellsnet/Data+Filtering),但是我无法使用此命名空间来生成启用了此过滤功能的文档。

使用Aspose不能实现此功能吗?

最佳答案

Aspose通过Aspose.Cells.AutoFilter对象提供此功能。

该文档可以在这里找到:
https://apireference.aspose.com/net/cells/aspose.cells/autofilter

一些示例可以在这里找到:
https://docs.aspose.com/display/cellsnet/Data+Filtering

要将自动过滤器添加到标题行:

//Creating AutoFilter by giving the cells range of the heading row
worksheet.AutoFilter.Range = "A1:B1";

10-08 10:51