Inserción y eliminación de comentarios Cell en una hoja de trabajo

Agregar y eliminar comentarios en Cells

Para agregar comentarios a las celdas:

  1. Abra un archivo de Excel existente.
  2. Agregar un comentario a una celda.
  3. Guarda el archivo.

Para eliminar los comentarios, el proceso es similar, con la excepción de que se elimina el comentario.

Los ejemplos de código a continuación ilustran primero cómoañadir un comentario y luego comoeliminar un comentario con VSTO o Aspose.Cells for .NET.

Inserción de comentarios

Estos fragmentos de código muestran cómo agregar un comentario a una celda primero conVSTO (C#, VB) y luego conAspose.Cells for .NET (C#, VB).

Insertar un comentario con VSTO

C#

 .......

using Microsoft.VisualStudio.Tools.Applications.Runtime;

using Excel = Microsoft.Office.Interop.Excel;

using Office = Microsoft.Office.Core;

using System.Reflection;

.......

//Instantiate the Application object.

Excel.Application excelApp = new Excel.ApplicationClass();

//Specify the template excel file path.

string myPath=@"d:\test\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();

Insertar un comentario con Aspose.Cells for .NET

C#

 .......

using Aspose.Cells;

.......

//Specify the template excel file path.

string myPath=@"d:\test\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(@"d:\test\Book1.xls");

Eliminar comentarios

Para eliminar un comentario de una celda, use las siguientes líneas de código paraVSTO (C#, VB) yAspose.Cells for .NET (C#, VB).

Eliminación de un comentario con VSTO

C#

 //Remove the comment.

rng1.Comment.Delete();    

Eliminar un comentario con Aspose.Cells for .NET

C#

 //Remove the comment.

workbook.Worksheets[0].Comments.RemoveAt("A1");