SpreadsheetGetCellComment
Method Signature
SpreadsheetGetCellComment(spreadsheetObj=[any], row=[any], column=[any])Arguments
Argument
Type
Required
Description
Default
Examples
// Retrieve comment from cell
var spreadsheet = SpreadsheetNew();
SpreadsheetSetCellComment( spreadsheet, 1, 1, "This is a note" );
var comment = SpreadsheetGetCellComment( spreadsheet, 1, 1 );
println( comment );Related
Last updated
Was this helpful?
