Unit: lxDraw
Description
Use the Comment property to return a Comment object. The following example changes the text in the comment in cell E5.
Workbook.Sheets[1].Range['E5', 'E5'].Comment.Text := 'Comment';
Use the
AddComment method to add a
comment to a range. The following example adds a
comment to cell E5 on Worksheet one.
with Workbook.Sheets[1].Range['E5', 'E5'].AddComment do begin
Visible := False;
Text := 'Comment text';
end;
Properties