Administrar comentarios en la hoja de trabajo

Trabajar con comentarios

Adición de comentarios

Para agregar un comentario a la hoja de trabajo, siga los pasos a continuación:

  1. Agregue el control Aspose.Cells.GridWeb al formulario web.
  2. Acceda a la hoja de trabajo a la que está agregando comentarios.
  3. Agregar un comentario a una celda.
  4. Establezca una nota para el nuevo comentario.

Se ha añadido un comentario a la hoja de cálculo.

todo:imagen_alternativa_texto

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Accessing the reference of the worksheet that is currently active and add a dummy value to cell A1
GridWorksheet sheet = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex];
sheet.Cells["A1"].PutValue("This cell has a comment added, hover to view.");
// Resize first column
sheet.Cells.SetColumnWidth(0, 140);
// Adding comment to "A1" cell of the worksheet
GridComment comment = sheet.Comments[sheet.Comments.Add("A1")];
// Setting the comment note
comment.Note = "These are my comments for the cell";

Acceso a comentarios

Para acceder a un comentario:

  1. Accede a la celda que contiene el comentario.
  2. Obtenga la referencia de la celda.
  3. Pase la referencia a la colección de comentarios para acceder al comentario.
  4. Ahora es posible modificar las propiedades del comentario.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Accessing the reference of the worksheet that is currently active
GridWorksheet sheet = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex];
// Accessing a specific cell that contains comment
GridCell cell = sheet.Cells["A1"];
// Accessing the comment from the specific cell
GridComment comment = sheet.Comments[cell.Name];
if (comment != null)
{
// Modifying the comment note
comment.Note = "I have modified the comment note.";
}

Eliminar comentarios

Para eliminar un comentario:

  1. Acceda a la celda como se explicó anteriormente.
  2. Utilice el método RemoveAt de la colección de comentarios para eliminar el comentario.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Accessing the reference of the worksheet that is currently active
GridWorksheet sheet = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex];
// Accessing a specific cell that contains comment
GridCell cell = sheet.Cells["A1"];
// Removing comment from the specific cell
sheet.Comments.RemoveAt(cell.Name);