FMX.AddressBook.Types.TContactSocialProfiles.Create

From RAD Studio API Documentation
Jump to: navigation, search

C++

/* {System_Generics_Collections}TObjectList<FMX_AddressBook_Types_TContactSocialProfile>.Create */ inline __fastcall TContactSocialProfiles()/* overload */ : System::Generics::Collections::TObjectList__1<TContactSocialProfile*>() { }
/* {System_Generics_Collections}TObjectList<FMX_AddressBook_Types_TContactSocialProfile>.Create */ inline __fastcall TContactSocialProfiles(bool AOwnsObjects)/* overload */ : System::Generics::Collections::TObjectList__1<TContactSocialProfile*>(AOwnsObjects) { }
/* {System_Generics_Collections}TObjectList<FMX_AddressBook_Types_TContactSocialProfile>.Create */ inline __fastcall TContactSocialProfiles(const System::DelphiInterface<System::Generics::Defaults::IComparer__1<TContactSocialProfile*> > AComparer, bool AOwnsObjects)/* overload */ : System::Generics::Collections::TObjectList__1<TContactSocialProfile*>(AComparer, AOwnsObjects) { }
/* {System_Generics_Collections}TObjectList<FMX_AddressBook_Types_TContactSocialProfile>.Create */ inline __fastcall TContactSocialProfiles(System::Generics::Collections::TEnumerable__1<TContactSocialProfile*>* const Collection, bool AOwnsObjects)/* overload */ : System::Generics::Collections::TObjectList__1<TContactSocialProfile*>(Collection, AOwnsObjects) { }
/* {System_Generics_Collections}TList<FMX_AddressBook_Types_TContactSocialProfile>.Create */ inline __fastcall TContactSocialProfiles(const System::DelphiInterface<System::Generics::Defaults::IComparer__1<TContactSocialProfile*> > AComparer)/* overload */ : System::Generics::Collections::TObjectList__1<TContactSocialProfile*>(AComparer) { }
/* {System_Generics_Collections}TList<FMX_AddressBook_Types_TContactSocialProfile>.Create */ inline __fastcall TContactSocialProfiles(System::Generics::Collections::TEnumerable__1<TContactSocialProfile*>* const Collection)/* overload */ : System::Generics::Collections::TObjectList__1<TContactSocialProfile*>(Collection) { }

Properties

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

Description

Create TObjectList instance.

FMX.AddressBook.Types.TContactSocialProfiles.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