PaymentDetails.DisplayItems Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This is a collection of PaymentItem classes items for a payment request. These represent the breakdown of items in the payment request. Some examples are shoes or taxes.
public:
property IVectorView<PaymentItem ^> ^ DisplayItems { IVectorView<PaymentItem ^> ^ get(); void set(IVectorView<PaymentItem ^> ^ value); };
IVectorView<PaymentItem> DisplayItems();
void DisplayItems(IVectorView<PaymentItem> value);
public IReadOnlyList<PaymentItem> DisplayItems { get; set; }
var iVectorView = paymentDetails.displayItems;
paymentDetails.displayItems = iVectorView;
Public Property DisplayItems As IReadOnlyList(Of PaymentItem)
Property Value
Gets or sets the DisplayItems.