番号設定

Numbersと日付の表示形式を設定する

Microsoft Excel の非常に強力な機能は、ユーザーが数値と日付の表示形式を設定できることです。数値データは、10 進数、通貨、パーセンテージ、分数、会計値などのさまざまな値を表すために使用できることがわかっています。これらの数値はすべて、表す情報の種類に応じてさまざまな形式で表示されます。同様に、日付または時刻を表示できる形式は多数あります。 Aspose.Cells はこの機能をサポートし、開発者が数値または日付の表示形式を設定できるようにします。

Microsoft Excel での表示形式の設定

Microsoft Excel で表示形式を設定するには:

  1. 任意のセルを右クリックします。
  2. 選択するフォーマット Cells.任意の種類の値の表示形式を設定するために使用されるダイアログが表示されます。

ダイアログの左側には、次のような多くの値のカテゴリがあります。全般的, 番号, 通貨, 会計, 日にち, 時間, **割合、**Aspose.Cells は、これらの表示形式をすべてサポートします。

Aspose.Cells はクラスを提供し、ワークブックMicrosoft Excel ファイルを表します。のワークブッククラスにはワークシートExcel ファイル内の各ワークシートにアクセスできるコレクション。ワークシートは、ワークシートクラス。のワークシートクラスはCellsコレクション。の各項目Cellsコレクションはのオブジェクトを表しますCellクラス。

Aspose.Cells提供GetStyleスタイルの設定のメソッドCellクラス。これらのメソッドは、セルの書式設定を取得および設定するために使用されます。のスタイルクラスには、数値と日付の表示形式を処理するための便利なプロパティがいくつか用意されています。

組み込みの数値形式の使用

Aspose.Cells には、数値と日付の表示形式を構成するための組み込みの数値形式がいくつか用意されています。これらの組み込み数値形式は、番号のプロパティスタイル物体。すべての組み込みの数値形式には、一意の数値が与えられます。開発者は、任意の数値を番号のプロパティスタイル表示形式を適用するオブジェクト。このアプローチは高速です。 Aspose.Cells でサポートされている組み込みの数値形式を以下に示します。

価値 タイプ フォーマット文字列
0 全般的 全般的
1 小数 0
2 小数 0.00
3 小数 # ,##0
4 小数 # ,##0.00
5 通貨 $#,##0;$-#,##0
6 通貨 $#,##0;[赤]$-#,##0
7 通貨 $#,##0.00;$-#,##0.00
8 通貨 $#,##0.00;[赤]$-#,##0.00
9 パーセンテージ 0%
10 パーセンテージ 0.00%
11 科学的 0.00E+00
12 分数 # ?/?
13 分数 # /
14 日にち 月/日/年
15 日にち d-mmm-yy
16 日にち d-うーん
17 日にち mmm-yy
18 時間 h:mm 午前/午後
19 時間 h:mm:ss AM/PM
20 時間 うーん
21 時間 時:分:秒
22 時間 月/日/年 時:分
37 通貨 # ,##0;-#,##0
38 通貨 # ,##0;[赤]-#,##0
39 通貨 # ,##0.00;-#,##0.00
40 通貨 # ,##0.00;[赤]-#,##0.00
41 会計 _ * #,##0_ ;_ * “_ ;_ @_
42 会計 _ $* #,##0_ ;_ $* “_ ;_ @_
43 会計 _ * #,##0.00_ ;_ * “??_ ;_ @_
44 会計 _ $* #,##0.00_ ;_ $* “??_ ;_ @_
45 時間 mm:ss
46 時間 時:分:秒
47 時間 mm:ss.0
48 科学的 ## 0.0E+00
49 文章 @
// 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);
// Create directory if it is not already present.
bool IsExists = System.IO.Directory.Exists(dataDir);
if (!IsExists)
System.IO.Directory.CreateDirectory(dataDir);
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Obtaining the reference of first worksheet
Worksheet worksheet = workbook.Worksheets[0];
// Adding the current system date to "A1" cell
worksheet.Cells["A1"].PutValue(DateTime.Now);
// Getting the Style of the A1 Cell
Style style = worksheet.Cells["A1"].GetStyle();
// Setting the display format to number 15 to show date as "d-mmm-yy"
style.Number = 15;
// Applying the style to the A1 cell
worksheet.Cells["A1"].SetStyle(style);
// Adding a numeric value to "A2" cell
worksheet.Cells["A2"].PutValue(20);
// Getting the Style of the A2 Cell
style = worksheet.Cells["A2"].GetStyle();
// Setting the display format to number 9 to show value as percentage
style.Number = 9;
// Applying the style to the A2 cell
worksheet.Cells["A2"].SetStyle(style);
// Adding a numeric value to "A3" cell
worksheet.Cells["A3"].PutValue(2546);
// Getting the Style of the A3 Cell
style = worksheet.Cells["A3"].GetStyle();
// Setting the display format to number 6 to show value as currency
style.Number = 6;
// Applying the style to the A3 cell
worksheet.Cells["A3"].SetStyle(style);
// Saving the Excel file
workbook.Save(dataDir + "book1.out.xls", SaveFormat.Excel97To2003);

カスタム数値形式の使用

表示形式を設定するために独自のカスタマイズされた形式文字列を定義するには、スタイルオブジェクトのカスタム財産。このアプローチは、事前設定された形式を使用するほど高速ではありませんが、より柔軟です。

// 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);
// Create directory if it is not already present.
bool IsExists = System.IO.Directory.Exists(dataDir);
if (!IsExists)
System.IO.Directory.CreateDirectory(dataDir);
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Adding a new worksheet to the Excel object
int i = workbook.Worksheets.Add();
// Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.Worksheets[i];
// Adding the current system date to "A1" cell
worksheet.Cells["A1"].PutValue(DateTime.Now);
// Getting the style of A1 cell
Style style = worksheet.Cells["A1"].GetStyle();
// Setting the custom display format to show date as "d-mmm-yy"
style.Custom = "d-mmm-yy";
// Applying the style to A1 cell
worksheet.Cells["A1"].SetStyle(style);
// Adding a numeric value to "A2" cell
worksheet.Cells["A2"].PutValue(20);
// Getting the style of A2 cell
style = worksheet.Cells["A2"].GetStyle();
// Setting the custom display format to show value as percentage
style.Custom = "0.0%";
// Applying the style to A2 cell
worksheet.Cells["A2"].SetStyle(style);
// Adding a numeric value to "A3" cell
worksheet.Cells["A3"].PutValue(2546);
// Getting the style of A3 cell
style = worksheet.Cells["A3"].GetStyle();
// Setting the custom display format to show value as currency
style.Custom = "£#,##0;[Red]$-#,##0";
// Applying the style to A3 cell
worksheet.Cells["A3"].SetStyle(style);
// Saving the Excel file
workbook.Save(dataDir + "book1.out.xls", SaveFormat.Excel97To2003);

先行トピック