HotXLS Docs

Comment property

Returns a TXLSComment object that represents the comment of the specified cell

Syntax

property Comment: TXLSComment;

Example

This example sets the comment for A1 cell.

With Workbook.Sheets[1].Range['A1', 'A1'] do
begin
  AddComment;
  Comment.Text := 'Comment for cell A1';
end;