HotXLS-dokumentation
Indhold
Startside
Oversigt
TGridToXLS
IXLSWorkbook
Startside
Indhold
Oversigt
Font egenskab
Returnerer a IXLSFont object that represents the font of the specified range
Syntaks
property Font: IXLSFont;
Eksempel
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;
Copyright © 2010-2026 losLab Software