Insérer et Supprimer les Commentaires de Cellule dans une Feuille de Calcul en VSTO et Aspose.Cells
Contents
[
Hide
]
Pour ajouter des commentaires aux cellules :
- Ouvrez un fichier Excel existant.
- Ajoutez un commentaire à une cellule.
- Enregistrez le fichier.
Pour supprimer les commentaires, le processus est similaire, à l’exception que le commentaire est supprimé.
Les exemples de code ci-dessous illustrent d’abord comment ajouter un commentaire, puis comment le supprimer avec VSTO ou Aspose.Cells for .NET.
Insertion de Commentaires
Ces extraits de code montrent comment ajouter un commentaire à une cellule d’abord avec VSTO (C#) puis avec 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");
Supprimer les Commentaires
Pour supprimer un commentaire d’une cellule, utilisez les lignes de code suivantes pour VSTO (C#) et Aspose.Cells for .NET (C#).
VSTO
//Remove the comment.
rng1.Comment.Delete();
Aspose.Cells
//removing comments
workbook.Worksheets[0].Comments.RemoveAt("A1");