Gets or sets the party mailing address.
The mailing address of the party. This property consists of the following properties:
Property Name
|
Description
|
Format
|
Required?
|
|
|
|
Country |
The country of the party. |
|
|
Line1 |
The Line 1 address information for the party. |
|
|
Line2 |
The Line 2 address information for the party. |
|
|
City |
The city of the party. |
|
|
State |
The state of the party. |
|
|
Zip |
The zipcode of the party. |
|
|
Syntax
public read-write property MailingAddress: Address; virtual;
[XmlElement("MailingAddress")]
public: __property virtual Address* get_MailingAddress();
public: __property virtual void set_MailingAddress(
Address* value
);
'Declaration
<XmlElementAttribute("MailingAddress")>
Public Overridable Property MailingAddress As Address
'Usage
Dim instance As Party
Dim value As Address
instance.MailingAddress = value
value = instance.MailingAddress
Property Value
The party mailing address.
See Also