Création d une plage nommée dans VSTO et Aspose.Cells

Pour créer une plage nommée :

  1. Mettez en place la feuille de calcul:
    1. Instancier un objet Application. (VSTO uniquement)
    2. Ajouter un classeur.
    3. Obtenir la première feuille.
  2. Créer une plage nommée :
    1. Définir une plage.
    2. Nommer la plage.
    3. Enregistrez le fichier.

Les exemples de code ci-dessous montrent comment réaliser ces étapes en utilisant VSTO avec soit C#. Les exemples de code qui suivent montrent comment faire la même chose en utilisant Aspose.Cells for .NET, encore une fois avec soit C#.

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

 //Instantiating a Workbook object

Workbook workbook = new Workbook();

//Accessing the first worksheet in the Excel file

Worksheet worksheet = workbook.Worksheets[0];

//Creating a named range

Range range = worksheet.Cells.CreateRange("A1", "B4");

//Setting the name of the named range

range.Name = "Test_Range";

for (int row = 0; row < 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");

Télécharger le code source d’exemple