Documentazione HotXLS

Shape proprietà

Restituisce a TXLSShape object that represents the shape attached to the specified comment. Read TXLSShape

Sintassi

proprietà Shape: TXLSShape;

Esempio

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

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