Dokumentácia HotXLS

Vlastnosť Shape

Vráti objekt TXLSShape, ktorý predstavuje tvar pripojený k zadanému komentáru. Len na čítanie TXLSShape

Syntax

property Shape: TXLSShape;

Príklad

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;