Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!
Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.
Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!
[Solved] Lazarus - Align Text in all TStringGrid cells
Delphi, Lazarus, Free Pascal
(@hans)
Famed Member Admin
Joined: 12 years ago
Posts: 2859
Topic starter
September 30, 2018 9:43 AM
Took me quite a while to figure this one out, especially since text alignment didn't seem to work under GTK/2.
For TStringGrid one can set a default text style for a cell, like so (I do this in the Form OnCreate event);
var
gridStyle:TTextStyle;
...
begin
...
gridStyle:=StringGrid1.DefaultTextStyle;
gridStyle.Alignment:=taCenter;
StringGrid1.DefaultTextStyle := gridStyle;
This centers the text in each cell as it's default setting. Obviously you can pick other alignments as well. Just wish this was a TStringGrid property.