FMX.InAppPurchase.TCustomInAppPurchase.OnProductsRequestResponse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnProductsRequestResponse: TIAPProductsRequestResponseEvent  read FOnProductsRequestResponse write FOnProductsRequestResponse;

C++

__property TIAPProductsRequestResponseEvent OnProductsRequestResponse = {read=FOnProductsRequestResponse, write=FOnProductsRequestResponse};

Properties

Type Visibility Source Unit Parent
event public
FMX.InAppPurchase.pas
FMX.InAppPurchase.hpp
FMX.InAppPurchase TCustomInAppPurchase

Description

Triggered after successfully retrieving information about the specified list of product IDs.

This event provides the following arguments to its event handler:

  • Sender is the current instance of TCustomInAppPurchase.
  • Products, a TList of instances of TProduct with detailed information about each of the products with a valid ID.
  • InvalidProductIDs, a TStrings that provides a list with the previously specified product IDs that are invalid.

See Also