Documentazione HotXLS

Proprietà Font

Restituisce un oggetto IXLSFont che rappresenta il carattere dell'oggetto specificato

Sintassi

property Font: IXLSFont;

Esempio

This example sets the font and font size for A1:F2 cells on first sheet to 12-pointer bold Arial

With Workbook.Sheets[1].Range['A1', 'F2'].Font do
begin
  Name := 'Arial';
  Size := 12;
  Bold := True;
end;