セル名と行/列インデックス間の変換
行と列のインデックスから Cell の名前を取得
行と列のインデックスがあれば、セルの名前を見つけることができます。この記事では、その方法について説明します。 Aspose.Cells は、CellsHelper.CellIndexToName メソッドを提供します。これにより、開発者は、行と列のインデックスを提供する場合にセルの名前を取得できます。
次のサンプル コードは、CellsHelper.CellIndexToName を使用して、既知の行と列のインデックスを指定してセルの名前にアクセスする方法を示しています。コードは次の出力を生成します。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
int row = 3; | |
int column = 5; | |
string name = Aspose.Cells.CellsHelper.CellIndexToName(row, column); | |
Console.WriteLine("Cell name: {0}", name); |
Cell 名前から行と列のインデックスを取得
名前からセルの行と列のインデックスを見つけることができます。この記事では、その方法について説明します。 Aspose.Cells は、開発者がセルの名前から行と列のインデックスを取得できるようにする CellsHelper.CellNameToIndex メソッドを提供します。
次のサンプル コードは、CellsHelper.CellNameToIndex を使用して、セルの名前から行と列のインデックスを取得する方法を示しています。コードは次の出力を生成します。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
string name = "C4"; | |
int row; | |
int column; | |
Aspose.Cells.CellsHelper.CellNameToIndex(name, out row, out column); | |
Console.WriteLine("Row: {0}, Column: {1}", row, column); |
安全なシート名を作成する
実行時にシート名を割り当てる必要がある場合があります。このシナリオでは、シート名に次のような追加の文字が含まれる場合があります。<>+(?”. シート名として許可されていないそのような文字は、ユーザーが提供するプリセット文字に置き換える必要があります. 同様に、長さが 31 文字を超える可能性があり、切り詰める必要があります. Apache POI は提供します安全な名前を作成する特定の機能, したがって、同様の機能が Aspose.Cells によって提供され、これらすべての問題を処理します. 次のサンプル コードは、この機能を示しています:
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Long name will be truncated to 31 characters | |
string name1 = CellsHelper.CreateSafeSheetName("this is first name which is created using CellsHelper.CreateSafeSheetName and truncated to 31 characters"); | |
// Any invalid character will be replaced with _ | |
string name2 = CellsHelper.CreateSafeSheetName(" <> + (adj.Private ? \" Private\" : \")", '_');//? shall be replaced with _ | |
// Display first name | |
Console.WriteLine(name1); | |
//Display second name | |
Console.WriteLine(name2); |
出力:
これは名前です。
<> + (adj.プライベート_「プライベート」