ワークブックのカスタム数値の小数点記号とグループ区切り記号を指定する
Contents
[
Hide
]
Microsoft Excel では、システム区切り記号を使用する代わりに、カスタムの小数点記号と桁区切り記号を指定できます。高度な Excel オプション下のスクリーンショットに示すように。
Aspose.Cells はWorkbookSettings.NumberDecimalSeparatorとWorkbookSettings.NumberGroupSeparatorプロパティを使用して、数値の書式設定/解析用のカスタム セパレータを設定します。
Microsoft Excel を使用したカスタム セパレータの指定
次のスクリーンショットは、高度な Excel オプションセクションを強調表示して、カスタムセパレーター.
Aspose.Cells を使用したカスタム セパレータの指定
次のサンプル コードは、Aspose.Cells API を使用してカスタム セパレータを指定する方法を示しています。これは、カスタム数値の小数点とグループ セパレータをそれぞれドットとスペースとして指定しています。
C# コードを使用して、カスタム数値の小数点およびグループ区切り記号を指定します
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 | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
Workbook workbook = new Workbook(); | |
// Specify custom separators | |
workbook.Settings.NumberDecimalSeparator = '.'; | |
workbook.Settings.NumberGroupSeparator = ' '; | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Set cell value | |
Cell cell = worksheet.Cells["A1"]; | |
cell.PutValue(123456.789); | |
// Set custom cell style | |
Style style = cell.GetStyle(); | |
style.Custom = "#,##0.000;[Red]#,##0.000"; | |
cell.SetStyle(style); | |
worksheet.AutoFitColumns(); | |
// Save workbook as pdf | |
workbook.Save(dataDir + "CustomSeparator_out.pdf"); |