Vcl.StdCtrls.TImageAlignment
Delphi
TImageAlignment = (iaLeft, iaRight, iaTop, iaBottom, iaCenter);
C++
enum DECLSPEC_DENUM TImageAlignment : unsigned char { iaLeft, iaRight, iaTop, iaBottom, iaCenter };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.StdCtrls.pas Vcl.StdCtrls.hpp |
Vcl.StdCtrls | Vcl.StdCtrls |
Description
Alignment of image on TButton.
TImageAlignment indicates the alignment of an image on a TButton, which is the value of its ImageAlignment property. Following are the possible values of TImageAlignment:
| Value | Meaning |
|---|---|
|
iaLeft |
Left aligned. |
|
iaRight |
Right aligned. |
|
iaTop |
Top aligned. |
|
iaBottom |
Bottom aligned. |
|
iaCenter |
Center aligned. |