Documentazione HotXLS

Comment proprietà

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

Sintassi

proprietà Comment: TXLSComment;

Esempio

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;