Created
December 13, 2019 11:37
-
-
Save evandroamparo/1dc6477851dd3fa60d650b50b8e0f6ee to your computer and use it in GitHub Desktop.
Delphi - alinhar TEdit à direita
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OldStyle := GetWindowLong(Edit.Handle, GWL_STYLE); | |
NewStyle := (OldStyle and not(ES_LEFT or ES_CENTER or ES_RIGHT)) or ES_RIGHT; | |
SetWindowLong(Edit.Handle, GWL_STYLE, NewStyle); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment