我刚刚开始使用Aspose.Cell
的.NET库,并且在查找如何为输出Excel工作表启用数据过滤的文档时遇到了一些问题。
我知道此功能内置于Aspose.Cells.GridWeb
并在此处记录(http://www.aspose.com/docs/display/cellsnet/Data+Filtering)但是我无法使用此命名空间生成启用了此过滤的文档。
使用Aspose
?
答案 0 :(得分:8)
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";