Delphi : How to make cells' texts in TStringGrid center aligned?

When I use the top code (OnDraw part), it doesn't delete the first text and write the new text on the old text and one sel will duplicate .

link|improve this question
i use delphi 2010 – user841635 Jul 12 '11 at 23:34
feedback

1 Answer

up vote 2 down vote accepted

You need to add a call to TCanvas.FillRect before writing out the new text:

procedure TForm1.StringGrid1DrawCell(Sender: TObject; ACol, ARow: Integer;
  Rect: TRect; State: TGridDrawState);
var
  S: String;
begin
  S := StringGrid1.Cells[ACol, ARow];
  StringGrid1.Canvas.FillRect(Rect);
  SetTextAlign(StringGrid1.Canvas.Handle, TA_CENTER);
  StringGrid1.Canvas.TextRect(Rect,
    Rect.Left + (Rect.Right - Rect.Left) div 2, Rect.Top + 2, S);
end;

Note you'll also have to make sure that the TStringGrid.DefaultDrawing is set to False in order for this to work.

link|improve this answer
thank you but what is the S in your code ? i was changed your code but it dosent worked : – user841635 Jul 13 '11 at 0:21
procedure TF_avalie_salon.StringGrid1DrawCell(Sender: TObject; ACol, ARow: Integer; Rect: TRect; State: TGridDrawState); var S: string; begin S := StringGrid1.Cells[ACol, ARow]; StringGrid1.Canvas.FillRect(Rect); SetTextAlign(StringGrid1.Canvas.Handle, TA_CENTER); StringGrid1.Canvas.TextRect(Rect,Rect.Left + (Rect.Right - Rect.Left) div 2, Rect.Top + 2, S); end; – user841635 Jul 13 '11 at 0:21
do you want a screen shot from the string grid ? – user841635 Jul 13 '11 at 0:22
The S is something I missed when I grabbed the code from your link. Sorry. – Ken White Jul 13 '11 at 0:25
Please add a screenshot to your original question, as it appears I don't understand what the problem is at this point. FillRect should solve the problem (unless you're forgetting to set the StringGrid.DefaultDrawing to False). – Ken White Jul 13 '11 at 0:28
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.