Table of Contents

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.

public AddressFormatField(string placeholderKey, string value)

Parameters

placeholderKey string

Placeholder key name

value string

Value

AddressFormatField(string, string, string)

Initializes a new instance of the class.

public AddressFormatField(string placeholderKey, string value, string label)

Parameters

placeholderKey string

Placeholder key name

value string

Label

label string

Value

Properties

BillingSystemName

System name for billing form field

public string BillingSystemName { get; }

Property Value

string

IsCartFormField

True if this address format field is used in standard Cart form

public bool IsCartFormField { get; }

Property Value

bool

IsCountryField

True if this is a country field

public bool IsCountryField { get; }

Property Value

bool

IsRegionField

True if this is a region field

public bool IsRegionField { get; }

Property Value

bool

Label

Address field label.

public string Label { get; set; }

Property Value

string

PlaceholderKey

Placeholder key, like firstName or address1. Equal to one of key names in address format field.

public string PlaceholderKey { get; set; }

Property Value

string

ShippingSystemName

SSystem name for shipping form field

public string ShippingSystemName { get; }

Property Value

string

Value

Address format field value.

public string Value { get; set; }

Property Value

string
To top