Gets or sets the currency to use for the transaction.

Namespace:  C1.Web.C1PayPal
Assembly:  C1.Web.C1PayPal.2 (in C1.Web.C1PayPal.2.dll)

Syntax

C#
[DefaultValueAttribute(CurrencyEnum.USDollars)]
[CategoryAttribute("Item")]
[BindableAttribute(true)]
[DescriptionAttribute("Currency to use for the transaction (item price).")]
public CurrencyEnum CurrencyCode { get; set; }
Visual Basic (Declaration)
<DefaultValueAttribute(CurrencyEnum.USDollars)> _
<CategoryAttribute("Item")> _
<BindableAttribute(True)> _
<DescriptionAttribute("Currency to use for the transaction (item price).")> _
Public Property CurrencyCode As CurrencyEnum

Remarks

The price of the item is determined by two properties, ItemPrice and CurrencyCode.

The default value for this property is CurrencyEnum.USDollars.

See Also