FMX.ListView.Types.TListItemAlign

From RAD Studio API Documentation
Jump to: navigation, search

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

Center

The list item is moved to the center of the parent area.

Leading

The list item is moved to the beginning of the parent area.

Trailing

The list item is moved to end of the parent area.

See Also