VSTO および Aspose.Cells で名前付き範囲を作成する
Contents
[
Hide
]
名前付き範囲を作成するには:
- ワークシートを設定します。
- Application オブジェクトをインスタンス化します (VSTO のみ)。
- ワークブックを追加します。
- 最初のシートを取得します。
- 名前付き範囲を作成します。
- 範囲を定義します。
- 範囲に名前を付けます。
- ファイルを保存します。
The code examples below show how to perform these steps using VSTO with either C#. 次のコード例は、Aspose.Cells for .NET を使用して同じことを行う方法を示しています。
VSTO
//Create Excel Object
Excel.Application xl = Application;
//Create a new Workbook
Excel.Workbook wb = xl.Workbooks.Add(Missing.Value);
//Get Worksheets Collection
Excel.Sheets xlsheets = wb.Sheets;
//Select the first sheet
Excel.Worksheet excelWorksheet = (Excel.Worksheet)xlsheets[1];
//Select a range of cells
Excel.Range range = (Excel.Range)excelWorksheet.get_Range("A1:B4", Type.Missing);
//Add Name to Range
range.Name = "Test_Range";
//Put data in range cells
foreach (Excel.Range cell in range.Cells)
{
cell.set_Value(Missing.Value, "Test");
}
//Save New Workbook
wb.SaveCopyAs("Test_Range.xls");
//Quit Excel Object
xl.Quit();
Aspose.Cells
// Workbook オブジェクトのインスタンス化
ワークブック ワークブック = 新しいワークブック();
//Excel ファイルの最初のワークシートにアクセスする
ワークシート worksheet = workbook.Worksheets[0];
// 名前付き範囲の作成
範囲 range = worksheet.Cells.CreateRange("A1", "B4");
//名前付き範囲の名前を設定
range.Name = "Test_Range";
for (int 行 = 0; 行< range.RowCount; row++)
{
for (int column = 0; column < range.ColumnCount; column++)
{
range[row, column].PutValue("Test");
}
}
//Saving the modified Excel file in default (that is Excel 2003) format
workbook.Save("Test_Range.xls");
サンプルコードをダウンロード
- ギットハブ
- ソースフォージ
- [ビットバケット](https://bitbucket.org/asposemarketplace/aspose-for-vsto/downloads/Creating%20a%20Named%20Range%20(Aspose.Cells)。ジップ)