フォーマット戦略でセル文字列値を取得する
Aspose.Cells for Python via .NETは、フォーマットを含めるか含めないかに関わらず、セルの文字列値を取得するために使用できるCell.get_string_value(format_strategy)メソッドを提供します。例えば、値が0.012345のセルがあり、それを小数点以下2桁のみを表示するようにフォーマットした場合、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)メソッドの使用方法を説明しています。
from aspose.cells import CellValueFormatStrategy, Workbook | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# Create workbook | |
workbook = Workbook() | |
# Access first worksheet | |
worksheet = workbook.worksheets[0] | |
# Access cell A1 | |
cell = worksheet.cells.get("A1") | |
# Put value inside the cell | |
cell.put_value(0.012345) | |
# Format the cell that it should display 0.01 instead of 0.012345 | |
style = cell.get_style() | |
style.number = 2 | |
cell.set_style(style) | |
# Get string value as Cell Style | |
value = cell.get_string_value(CellValueFormatStrategy.CELL_STYLE) | |
print(value) | |
# Get string value without any formatting | |
value = cell.get_string_value(CellValueFormatStrategy.NONE) | |
print(value) |