FMX.AddressBook.Types.TContactRelatedNames.Create

From RAD Studio API Documentation
Jump to: navigation, search

C++

/* {System_Generics_Collections}TObjectList<FMX_AddressBook_Types_TContactRelatedName>.Create */ inline __fastcall TContactRelatedNames()/* overload */ : System::Generics::Collections::TObjectList__1<TContactRelatedName*>() { }
/* {System_Generics_Collections}TObjectList<FMX_AddressBook_Types_TContactRelatedName>.Create */ inline __fastcall TContactRelatedNames(bool AOwnsObjects)/* overload */ : System::Generics::Collections::TObjectList__1<TContactRelatedName*>(AOwnsObjects) { }
/* {System_Generics_Collections}TObjectList<FMX_AddressBook_Types_TContactRelatedName>.Create */ inline __fastcall TContactRelatedNames(const System::DelphiInterface<System::Generics::Defaults::IComparer__1<TContactRelatedName*> > AComparer, bool AOwnsObjects)/* overload */ : System::Generics::Collections::TObjectList__1<TContactRelatedName*>(AComparer, AOwnsObjects) { }
/* {System_Generics_Collections}TObjectList<FMX_AddressBook_Types_TContactRelatedName>.Create */ inline __fastcall TContactRelatedNames(System::Generics::Collections::TEnumerable__1<TContactRelatedName*>* const Collection, bool AOwnsObjects)/* overload */ : System::Generics::Collections::TObjectList__1<TContactRelatedName*>(Collection, AOwnsObjects) { }
/* {System_Generics_Collections}TList<FMX_AddressBook_Types_TContactRelatedName>.Create */ inline __fastcall TContactRelatedNames(const System::DelphiInterface<System::Generics::Defaults::IComparer__1<TContactRelatedName*> > AComparer)/* overload */ : System::Generics::Collections::TObjectList__1<TContactRelatedName*>(AComparer) { }
/* {System_Generics_Collections}TList<FMX_AddressBook_Types_TContactRelatedName>.Create */ inline __fastcall TContactRelatedNames(System::Generics::Collections::TEnumerable__1<TContactRelatedName*>* const Collection)/* overload */ : System::Generics::Collections::TObjectList__1<TContactRelatedName*>(Collection) { }
/* {System_Generics_Collections}TList<FMX_AddressBook_Types_TContactRelatedName>.Create */ inline __fastcall TContactRelatedNames(TContactRelatedName* const *Values, const int Values_High)/* overload */ : System::Generics::Collections::TObjectList__1<TContactRelatedName*>(Values, Values_High) { }

Properties

Type Visibility Source Unit Parent
constructor public FMX.AddressBook.Types.hpp FMX.AddressBook.Types TContactRelatedNames

Description

Create TObjectList instance.

FMX.AddressBook.Types.TContactRelatedNames.Create inherits from System.Generics.Collections.TObjectList.Create. All content below this line refers to System.Generics.Collections.TObjectList.Create.

Create TObjectList instance.

This overloaded method creates a TObjectList instance.

The AOwnsObjects parameter is a boolean that indicates whether object entries are owned by the list. If the object is owned, when the entry is removed from the list, the object is freed. The OwnsObjects property is set from the value of this parameter. The default is true.

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.

AComparer is an equality comparator function. If not provided, the default comparator for the type is used.

See Also