{Custom formatting On DrawCell event...}
procedure TfrmMain.gridMainDrawCell(Sender: TObject; ACol,
ARow: Integer; Rect: TRect; State: TGridDrawState);
begin
if (ACol = 2) and (ARow > 0) then
with gridMain do
RightAdjustText( Canvas, Rect, Cells[ACol,ARow] );
end;