function AddComment(Row, Col: Integer; Text: WideString): TXLSComment; overload; function AddComment(Row, Col: Integer; Text: WideString; Author: WideString): TXLSComment; overload;
| Row, Col | 1-基於 工作表 coordinates 的 target 儲存格 |
| Text | Comment 文字 到 attach 到 target 儲存格 |
| Author | Optional saved comment author |
Workbook.Sheets[1].AddComment(
4, 2,
'Check total',
'Reviewer');