Aggiungere collegamenti ipertestuali alle celle in VSTO e Aspose.Cells
Contents
[
Hide
]
Per aggiungere collegamenti ipertestuali alle celle in un foglio di calcolo, segui i seguenti passaggi:
- Configura il foglio di lavoro:
- Istanziare un oggetto Application. (Solo VSTO)
- Aggiungi un foglio di lavoro.
- Ottieni il primo foglio.
- Aggiungere testo alle celle a cui si aggiungerà un collegamento ipertestuale.
- Aggiungere un collegamento ipertestuale.
- Salvare il documento.
Questi passaggi sono mostrati negli esempi di codice sottostanti. I primi esempi mostrano come utilizzare VSTO con C# per aggiungere un collegamento ipertestuale a una cella. Gli esempi successivi mostrano come fare la stessa cosa utilizzando Aspose.Cells for .NET, di nuovo utilizzando C#.
Gli esempi di codice generano un file Excel con un collegamento ipertestuale nella cella A1 del primo foglio di lavoro.
Viene aggiunto un collegamento ipertestuale alla cella A1.
VSTO
//Instantiate the Application object.
Excel.Application ExcelApp = Application;
//Add a Workbook.
Excel.Workbook objBook = ExcelApp.Workbooks.Add(System.Reflection.Missing.Value);
//Get the First sheet.
Excel.Worksheet objSheet = (Excel.Worksheet)objBook.Sheets["Sheet1"];
//Define a range object(A1).
Excel.Range _range;
_range = objSheet.get_Range("A1", "A1");
//Add a hyperlink to it.
objSheet.Hyperlinks.Add(_range, "http://www.aspose.com/", Type.Missing, "Click to go to Aspose site", "Aspose Site!");
//Save the excel file.
objBook.SaveCopyAs("Hyperlink_test.xls");
//Quit the Application.
ExcelApp.Quit();
Aspose.Cells
//Instantiate a new Workbook object.
Workbook workbook = new Workbook();
//Get the First sheet.
Worksheet worksheet = workbook.Worksheets[0];
//Define A1 Cell.
Aspose.Cells.Cell cell = worksheet.Cells["A1"];
//Add a hyperlink to it.
int index = worksheet.Hyperlinks.Add("A1", 1, 1, "http://www.aspose.com/");
worksheet.Hyperlinks[index].TextToDisplay = "Aspose Site!";
worksheet.Hyperlinks[index].ScreenTip = "Click to go to Aspose site";
//Save the excel file.
workbook.Save("Hyperlink_test.xls");