数値キーパッドから小数点記号を変更する
Contents
[
Hide
]
考えられる使用シナリオ
デフォルトでは、Aspose.Cells.GridWeb は、マシンのロケール/地域設定に応じて数値データを表示します。 Aspose.Cells.GridWeb API を使用して、数値キーパッドから小数点記号をプログラムで変更できます。そのため、ファイルを GridWeb マトリックスにインポートするか、(数値キーパッドから) 数値データを新しいワークシート セルに入力すると、目的の小数点を持つ必要があります。セパレーターを視覚的に設定します。
数値キーパッドから小数点記号を変更する
を使用してGridWorksheetCollection.NumberDecimalSeparatorプロパティを使用すると、数値キーパッドからプログラムで小数点記号を変更できます。それがどのように機能するかを示すスクリーンショットをご覧ください
サンプルコード
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Change the numeric decimal separator to "^" char. | |
GridWeb1.WorkSheets.NumberDecimalSeparator = '^'; |
小数点記号の変更は、GridWeb でのユーザーの視覚的な経験のためだけのものであることに注意してください。ワークブックを編集して保存すると、ロケール/地域の小数点記号に従って数値が (スプレッドシートに) 保存されます。