Documentazione HotXLS

Proprietà Comment

Restituisce un oggetto TXLSComment che rappresenta il commento associato alla cella nell'angolo in alto a sinistra dell'intervallo

Sintassi

property 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;