Τεκμηρίωση HotXLS

Shape ιδιότητα

Επιστρέφει a TXLSShape object that represents the shape attached to the specified comment. Read TXLSShape

Σύνταξη

property Shape: TXLSShape;

Παράδειγμα

This example sets the width and text of comment for cell E5

With Workbook.Sheets[1].Range['E5', 'E5'].AddComment do begin
  Text := 'Comment';
  Shape.Width := 300;
end;