chkaufmann 17 Posted March 24, 2020 I have a TEdit that is a bit higher than normal in order to align it with other controls. Then I wanted to center the text vertically but there is no such property and the only solution I found is to overwrite the Paint method in a subclass. Is this really the case? Or did I miss something? Christian Share this post Link to post
Remy Lebeau 1393 Posted March 24, 2020 TEdit is just a wrapper for a standard Win32 edit control, which does not support vertical alignment, only horizontal. Share this post Link to post