FMX.InAppPurchase.TIAPProductList

From RAD Studio API Documentation
Jump to: navigation, search

System.Generics.Collections.TListSystem.Generics.Collections.TEnumerableSystem.TObjectTIAPProductList

Delphi

TIAPProductList = class(TList<TProduct>)

C++

class PASCALIMPLEMENTATION TIAPProductList : public System::Generics::Collections::TList__1<TProduct*>

Properties

Type Visibility Source Unit Parent
class public
FMX.InAppPurchase.pas
FMX.InAppPurchase.hpp
FMX.InAppPurchase FMX.InAppPurchase

Description

Ordered list.

FMX.InAppPurchase.TIAPProductList inherits from System.Generics.Collections.TList. All content below this line refers to System.Generics.Collections.TList.

Ordered list.

TList represents an ordered list, accessible by an index.

You can create a list with a specific collection of items and a comparison operator.

You can add, change, insert or remove an item from a list, or clear the entire list. You can add nil objects to the list.

You can sort, search and reverse a list.

Count contains the number of items in the queue. Capacity is the number of items the list can hold before being resized. You can also set and get values by indexing the Items array.

An OnNotify event tells you when the list has changed.

The class TObjectList inherits from TList and provides an automatic mechanism for freeing objects removed from lists.

See Also

Code Examples