FMX.ListView.Adapters.Base.TListViewItems.TOrder

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TOrder = (FirstToLast, LastToFirst);

C++

enum class DECLSPEC_DENUM TOrder : unsigned char { FirstToLast, LastToFirst };

Properties

Type Visibility Source Unit Parent
enum public
FMX.ListView.Adapters.Base.pas
FMX.ListView.Adapters.Base.hpp
FMX.ListView.Adapters.Base TListViewItems

Description

Represents the order of the items of a list, compared to the order of those items in the list view where they belong.

The order of the items of a list may be any of the following:

Value Description

FirstToLast

The items of the list follow the same order that they follow in the list view.

LastToFirst

The items of the list are in reverse order, compared to the order of those items in the list view.

See Also