无任何格式导出Excel数据到DataTable
Contents
[
Hide
]
有时用户希望将Excel数据导出到数据表时不进行任何格式设置。例如,如果某个单元格的值为0.012345,并且已格式化为显示两位小数,则当用户将Excel数据导出到数据表时,它将导出为0.01而不是0.012345。为解决这个问题,Aspose.Cells提供了ExportTableOptions.FormatStrategy属性,可以取这三个值之一
- CellValueFormatStrategy.CellStyle
- CellValueFormatStrategy.DisplayStyle
- CellValueFormatStrategy.None
如果将其设置为CellValueFormatStrategy.None,则将导出不带任何格式的数据。
示例代码
以下示例说明了使用ExportTableOptions.FormatStrategy属性将Excel数据以及不带任何格式的方式导出。
控制台输出
以下是上述示例代码的控制台调试输出
Cell String Value: 0.01
Cell String Value without Format: 0.012345
Export Data Table with Format Strategy as Cell Style: 0.01
Export Data Table with Format Strategy as None: 0.012345