Format Cells in TadvSpreadGrid

Hi,

I want to format specific cells (depending on column and row) such as advGrid->Colors[iCol][iRow] = clRed.
How can I set number format, borders, font... using col and row without using events onGetFloatFormat,...?
Best regards,

Font can be set via:

grid.FontNames[col,row]: string;
grid.FontStyles[col,row]: TFontStyle;
grid.FontSizes[col,row]: integer;

For borders and formatting string, there is currently no such equivalent property and this needs to be done via event OnGetFloatFormat / OnGetCellBorder(Prop)

Thanks for your help!