function AddComment(Row, Col: Integer; Text: WideString): TXLSComment; overload; function AddComment(Row, Col: Integer; Text: WideString; Author: WideString): TXLSComment; overload;
| Row, Col | 対象セルの 1 ベースのワークシート座標 |
| Text | 対象セルに添付するコメントのテキスト |
| Author | 保存されるコメントの作成者(オプション) |
Workbook.Sheets[1].AddComment(
4, 2,
'Check total',
'Reviewer');