comments

a module for working with comments in cells

object comments;

Example

// adding a comment into the cell B3
$$("ssheet").comments.add(3,2,"text");

Details

The comments module has three self-explanatory methods: add, get and remove.

// getting a comment for the cell B3
$$("ssheet").comments.get(3,2);
 
// removing a comment from the cell B3
$$("ssheet").comments.remove(3,2);
See also
Back to top