Comment class Worksheet
A classic cell comment (note), the little pop-up box anchored to a cell.
Attach one with Sheet.setComment or cell.comment = Comment(...), and read
it back from Sheet.getComment / cell.comment.
sheet.setComment(
CellIndex.indexByString('B2'),
Comment('Double-check this figure', author: 'Reviewer'),
);
Constructors
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override