接口 IComment
public interface IComment
代表一个单元格注释。
-
方法概要
-
方法详细资料
-
getText
String getText()获取注释文本。 -
setText
设置注释文本。 -
getAuthor
String getAuthor()获取评论的作者。 -
getAnchorCell
IRange getAnchorCell()获取注释的锚点单元格。 -
delete
void delete()删除该对象。 -
next
IComment next()返回代表下一个注释的IComment
对象。 -
previous
IComment previous()返回表示上一个注释的IComment
对象。 -
getVisible
boolean getVisible()确定对象是否可见。 -
setVisible
void setVisible(boolean value) 确定对象是否可见。 -
getShape
IShape getShape()返回代表附加到指定注释的形状的IShape
对象。 -
fromJson
生成来自JSON字符串的注释。- 参数:
json
- 包含注释信息的JSON字符串。
-
toJson
String toJson()生成一个从注释而来的JSON字符串。- 返回:
- 包含注释信息的JSON字符串。
-