GridCell Yorumları Oluştur, Kaldır ve Al
Olası Kullanım Senaryoları
Aşağıdaki makale, GridWeb çalışma sayfasında hücreden (GridCell) yorum oluşturmayı, kaldırmayı ve almayı nasıl açıklar. GridWeb, hücreye fareyi hücre üzerine getirdiğinizde MS-Excel gibi Tooltip gösterir. Ekran görüntüsünde gösterildiği gibi.
Hücre İçinde Yorum Objesi Oluştur
Lütfen hücre içinde bir yorum objesi oluşturmak için GridCell.CreateComment yöntemini kullanın. Aşağıdaki örnek kod, GridWeb’in ilk çalışma sayfasının B4 hücresine bir örnek yorum oluşturur.
//Access first worksheet of GridWeb
GridWorksheet sheet = GridWeb1.WorkSheets[0];
//Access cell B4
GridCell cell = sheet.Cells["B4"];
//Create comment with these parameters
//i.e. note, author, isvisible
cell.CreateComment("This is a B4 note.", "Peter", true);
Hücreden Yorum Objesi Kaldır
Lütfen, bir hücreden yorum objesini kaldırmak için GridCell.RemoveComment yöntemini kullanın. Aşağıdaki örnek kod, GridWeb’in ilk çalışsayfasındaki B4 hücresinden yorumu kaldırır.
//Access first worksheet of GridWeb
GridWorksheet sheet = GridWeb1.WorkSheets[0];
//Access cell B4
GridCell cell = sheet.Cells["B4"];
//Remove the comment object from this cell.
cell.RemoveComment();
Hücreden Yorum Objesini Al
Lütfen, hücreden yorum objesini almak için GridCell.GetComment() yöntemini kullanın. Aşağıdaki örnek kod, B4 hücresinden yorum objesini alır ve ardından Yazar, Not, Görünürlük vb. gibi çeşitli özelliklerine erişir.
//Access first worksheet of GridWeb
GridWorksheet sheet = GridWeb1.WorkSheets[0];
//Access cell B4
GridCell cell = sheet.Cells["B4"];
//Get comment of this cell
GridComment gridComm = cell.GetComment();
//Access its various properties
string strAuth = gridComm.Author;
string strNote = gridComm.Note;
bool isVis = gridComm.IsVisible;