Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if NeedToFormatThisCell( ACol, ARow ) then
with TStringGrid(Sender) do
FormatMyWay( Canvas, Rect, Cells[ACol,ARow] );
function NeedToFormatThisCell( ACol, ARow: integer): boolean;
begin
// If this cell needs formatting, return True
// otherwise return False
end;
procedure FormatMyWay( ACanvas:TCanvas; ARect:TRect; AText:string );
begin
// Position the text within the rect on the canvas.
end;