FMX.AddressBook.TAddressBookSources.Create

From RAD Studio API Documentation
Jump to: navigation, search

C++

/* {System_Generics_Collections}TList<FMX_AddressBook_TAddressBookSource>.Create */ inline __fastcall TAddressBookSources()/* overload */ : System::Generics::Collections::TList__1<TAddressBookSource*>() { }
/* {System_Generics_Collections}TList<FMX_AddressBook_TAddressBookSource>.Create */ inline __fastcall TAddressBookSources(const System::DelphiInterface<System::Generics::Defaults::IComparer__1<TAddressBookSource*> > AComparer)/* overload */ : System::Generics::Collections::TList__1<TAddressBookSource*>(AComparer) { }
/* {System_Generics_Collections}TList<FMX_AddressBook_TAddressBookSource>.Create */ inline __fastcall TAddressBookSources(System::Generics::Collections::TEnumerable__1<TAddressBookSource*>* const Collection)/* overload */ : System::Generics::Collections::TList__1<TAddressBookSource*>(Collection) { }

Properties

Type Visibility Source Unit Parent
constructor public FMX.AddressBook.hpp FMX.AddressBook TAddressBookSources

Description

Create and initialize a list instance.

FMX.AddressBook.TAddressBookSources.Create inherits from System.Generics.Collections.TList.Create. All content below this line refers to System.Generics.Collections.TList.Create.

Create and initialize a list instance.

This overloaded method creates and initializes a list instance.

AComparer is a comparison function. If not provided, the default comparator for the type is used.

Collection is a collection with which to initialize the list. The objects are added in the same order as in Collection. If Collection is specified, the creation is an O(n) operation, where n is the number of items in Collection.

See Also