Inserimento e rimozione di commenti Cell in un foglio di lavoro in VSTO e Aspose.Cells
Contents
[
Hide
]
Per aggiungere commenti alle celle:
- Apri un file Excel esistente.
- Aggiungi un commento a una cella.
- Salva il file.
Per rimuovere i commenti, il processo è simile, con l’eccezione che il commento viene rimosso.
Gli esempi di codice seguenti illustrano innanzitutto come aggiungere un commento e quindi come rimuovere un commento con VSTO o Aspose.Cells for .NET.
Inserimento di commenti
Questi frammenti di codice mostrano come aggiungere un commento a una cella prima con VSTO (C#) e poi con Aspose.Cells for .NET (C#).
VSTO
//Instantiate the Application object.
Excel.Application excelApp = Application;
//Specify the template excel file path.
string myPath = "Book1.xls";
//Open the excel file.
excelApp.Workbooks.Open(myPath, Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value);
//Get the A1 cell.
Excel.Range rng1 = excelApp.get_Range("A1", Missing.Value);
//Add the comment with text.
rng1.AddComment("This is my comment");
//Save the file.
excelApp.ActiveWorkbook.Save();
//Quit the Application.
excelApp.Quit();
Aspose.Cells
//Specify the template excel file path.
string myPath = "Book1.xls";
//Instantiate a new Workbook.
//Open the excel file.
Workbook workbook = new Workbook(myPath);
//Add a Comment to A1 cell.
int commentIndex = workbook.Worksheets[0].Comments.Add("A1");
//Accessing the newly added comment
Comment comment = workbook.Worksheets[0].Comments[commentIndex];
//Setting the comment note
comment.Note = "This is my comment";
//Save As the excel file.
workbook.Save("Book1.xls");
Rimozione di commenti
Per rimuovere un commento da una cella, utilizzare le seguenti righe di codice per VSTO (C#) e Aspose.Cells for .NET (C#).
VSTO
//Remove the comment.
rng1.Comment.Delete();
Aspose.Cells
//removing comments
workbook.Worksheets[0].Comments.RemoveAt("A1");
Scarica il codice di esempio
- Github
- SourceForge
- [Bitbucket](https://bitbucket.org/asposemarketplace/aspose-for-vsto/downloads/Inserting%20and%20Removing%20Cell%20Comments%20in%20a%20Worksheet%20(Aspose.Cells).cerniera lampo)