![]() |
TStringGrid inner margin
hi all
how can i change the margin in TStringGrid component? see picture below (i mean how to set the space between the grid border and char to 0) ![]() thank you, for your creative solutions... |
Re: TStringGrid inner margin
ehm:) wie kann ich den margin zchischen den linien und den symbol auf 0 zetzen, sodas kein freier raum dazwichen ist!
danke |
Re: TStringGrid inner margin
Welcome to our community, Silvia.
The gap you object to is produced by the default drawing method of the cell. If you have an event handler for the OnDrawCell() event you can set horizontal and vertical gaps at will:
Delphi-Quellcode:
Kind regards
procedure TDemoForm.StringGridDrawCell(Sender: TObject; ACol,
ARow: Integer; Rect: TRect; State: TGridDrawState); const hGap = 0; vGap = 0; begin with Sender as TStringGrid do begin Canvas.FillRect(Rect); TextOut(Canvas.Handle, Rect.Left + hGap, Rect.Top + vGap, PAnsiChar(Cells[ACol, ARow]), Length(Cells[ACol, ARow])); end; end; marabu |
Re: TStringGrid inner margin
Great:) thank you soooo much:)))
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:35 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz