Class AddressFormatField
- Namespace
- Dynamicweb.Ecommerce.International
- Assembly
- Dynamicweb.Ecommerce.dll
Represents address format field information.
public class AddressFormatField
- Inheritance
-
AddressFormatField
- Inherited Members
Constructors
AddressFormatField()
Initializes a new instance of the class.
public AddressFormatField()
AddressFormatField(string, string?)
Initializes a new instance of the class.
[SetsRequiredMembers]
public AddressFormatField(string placeholderKey, string? value)
Parameters
AddressFormatField(string, string?, string?)
Initializes a new instance of the class.
[SetsRequiredMembers]
public AddressFormatField(string placeholderKey, string? value, string? label)
Parameters
Properties
BillingSystemName
System name for billing form field
public string? BillingSystemName { get; }
Property Value
IsCartFormField
True if this address format field is used in standard Cart form
public bool IsCartFormField { get; }
Property Value
IsCountryField
True if this is a country field
public bool IsCountryField { get; }
Property Value
IsRegionField
True if this is a region field
public bool IsRegionField { get; }
Property Value
Label
Address field label.
public string? Label { get; set; }
Property Value
PlaceholderKey
Placeholder key, like firstName or address1. Equal to one of key names in address format field.
public required string PlaceholderKey { get; set; }
Property Value
ShippingSystemName
SSystem name for shipping form field
public string? ShippingSystemName { get; }
Property Value
Value
Address format field value.
public string? Value { get; set; }