Çalışma Sayfasındaki Yorumları Yönetin

Yorumlarla Çalışmak

Yorum Ekleme

Çalışma sayfasına yorum eklemek için lütfen aşağıdaki adımları izleyin:

  1. Aspose.Cells.GridWeb denetimini Web Formuna ekleyin.
  2. Yorum eklediğiniz çalışma sayfasına erişin.
  3. Bir hücreye yorum ekleyin.
  4. Yeni yorum için bir not ayarlayın.

Çalışma sayfasına bir yorum eklendi

yapılacaklar:resim_alternatif_metin

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

Yorumlara Erişim

Bir yoruma erişmek için:

  1. Yorumu içeren hücreye erişin.
  2. Hücrenin referansını alın.
  3. Yoruma erişmek için referansı Yorum koleksiyonuna iletin.
  4. Yorumun özelliklerini değiştirmek artık mümkün.
// 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.";
}

Yorumları Kaldırma

Bir yorumu kaldırmak için:

  1. Yukarıda açıklandığı gibi hücreye erişin.
  2. Yorumu kaldırmak için Yorum koleksiyonunun RemoveAt yöntemini kullanın.
// 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);