ワークシートでコメントを管理

コメントの操作

コメントの追加

ワークシートにコメントを追加するには、次の手順に従ってください。

  1. Aspose.Cells.GridWeb コントロールを Web フォームに追加します。
  2. コメントを追加するワークシートにアクセスします。
  3. セルにコメントを追加します。
  4. 新しいコメントのメモを設定します。

ワークシートにコメントが追加されました

todo:画像_代替_文章

// 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";

コメントへのアクセス

コメントにアクセスするには:

  1. コメントを含むセルにアクセスします。
  2. セルの参照を取得します。
  3. Comment コレクションへの参照を渡して、コメントにアクセスします。
  4. コメントのプロパティを変更できるようになりました。
// 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.";
}

コメントの削除

コメントを削除するには:

  1. 上で説明したように、セルにアクセスします。
  2. コメントを削除するには、Comment コレクションの RemoveAt メソッドを使用します。
// 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);