创建、删除和获取GridCell注释
Contents
[
Hide
]
可能的使用场景
以下文章解释了如何在GridWeb工作表中创建、删除和获取GridCell注释。值得注意的是,当您在单元格上悬停鼠标时,GridWeb会像MS-Excel一样将注释显示为工具提示,如此屏幕截图所示。
在单元格内创建注释对象
请使用GridCell.CreateComment方法在单元格内创建注释对象。以下示例代码在GridWeb的第一个工作表的B4单元格中创建了一个示例注释。
// Access first worksheet of GridWeb
GridWorksheet sheet = GridWeb1.getWorkSheets().get(0);
// Access cell B4
GridCell cell = sheet.getCells().get("B4");
// Create comment with these parameters
// i.e. note, author, isvisible
cell.createComment("This is a B4 note.", "Peter", true);
从单元格中移除注释对象
请使用GridCell.RemoveComment方法从单元格中移除注释对象。以下示例代码从GridWeb的第一个工作表中移除了B4单元格的注释。
// Access first worksheet of GridWeb
GridWorksheet sheet = GridWeb1.getWorkSheets().get(0);
// Access cell B4
GridCell cell = sheet.getCells().get("B4");
// Remove the comment object from this cell.
cell.removeComment();
从单元格中获取注释对象
请使用GridCell.GetComment()方法从单元格中获取注释对象。以下示例代码从B4单元格获取注释对象,然后访问其各种属性,如作者、注释、可见性等。
// Access first worksheet of GridWeb
GridWorksheet sheet = GridWeb1.getWorkSheets().get(0);
// Access cell B4
GridCell cell = sheet.getCells().get("B4");
// Get comment of this cell
GridComment gridComm = cell.getComment();
// Access its various properties
String strAuth = gridComm.getAuthor();
String strNote = gridComm.getNote();
boolean isVis = gridComm.isVisible();