通过格式化策略获取单元格字符串值
Contents
[
Hide
]
Aspose.Cells for Python via .NET 提供了一个方法 Cell.get_string_value(format_strategy),可用于获取带有或没有任何格式的单元格的字符串值。假设您有一个值为 0.012345 的单元格,并且已将其格式化为只显示两位小数。在 Excel 中,它将显示为 0.01。您可以使用 Cell.get_string_value(format_strategy) 方法检索字符串值,值可以是 0.01 也可以是 0.012345。它接受 CellValueFormatStrategy 枚举作为参数,该枚举具有以下值:
- CellValueFormatStrategy.CELL_STYLE
- CellValueFormatStrategy.DISPLAY_STYLE
- CellValueFormatStrategy.DISPLAY_STRING
- CellValueFormatStrategy.NONE
以下示例代码解释了使用Cell.get_string_value(format_strategy)方法的用法。