FMX.ListView.Types.TListItemAlign
Delphi
TListItemAlign = (Leading, Center, Trailing);
C++
enum class DECLSPEC_DENUM TListItemAlign : unsigned char { Leading, Center, Trailing };
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| enum | public | FMX.ListView.Types.pas FMX.ListView.Types.hpp  | 
        FMX.ListView.Types | FMX.ListView.Types | 
Description
Enumerates the possible alignments of a list item.
TListItemAlign enumerates the alignments of a list item. It allows three types of alignment: leading, center, and trailing.
The following are possible values of TListItemAlign:
| Value | Meaning | 
|---|---|
| 
 
  | 
 The list item is moved to the center of the parent area.  | 
| 
 
  | 
 The list item is moved to the beginning of the parent area.  | 
| 
 
  | 
 The list item is moved to end of the parent area.  |