Uses of Interface
org.apache.poi.ss.usermodel.Comment
-
Packages that use Comment Package Description org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.usermodel -
-
Uses of Comment in org.apache.poi.hssf.usermodel
Classes in org.apache.poi.hssf.usermodel that implement Comment Modifier and Type Class Description class
HSSFComment
Represents a cell comment - a sticky note associated with a cell.Methods in org.apache.poi.hssf.usermodel with parameters of type Comment Modifier and Type Method Description void
HSSFCell. setCellComment(Comment comment)
Assign a comment to this cell. -
Uses of Comment in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return Comment Modifier and Type Method Description Comment
Drawing. createCellComment(ClientAnchor anchor)
Creates a comment.Comment
Cell. getCellComment()
Returns comment associated with this cellComment
Sheet. getCellComment(CellAddress ref)
Returns cell comment for the specified locationMethods in org.apache.poi.ss.usermodel that return types with arguments of type Comment Modifier and Type Method Description Map<CellAddress,? extends Comment>
Sheet. getCellComments()
Returns all cell comments on this sheet.Methods in org.apache.poi.ss.usermodel with parameters of type Comment Modifier and Type Method Description void
Cell. setCellComment(Comment comment)
Assign a comment to this cell
-