Gets or sets the CContact object representing the contact to whom this COrder will be billed.

Namespace:  Asi.iBO.Commerce
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public CContact BillToContact { get; set; }
Visual Basic (Declaration)
Public Property BillToContact As CContact
Visual C++
public:
property CContact^ BillToContact {
	CContact^ get ();
	void set (CContact^ value);
}

Field Value

A CContact object representing the contact to whom this COrder will be billed.

Remarks

A contact set using this property must either:
  1. Already exist in iMIS.
  2. Be saved to iMIS before the Order is saved.
  3. Be the same contact as the ShipToContact in which case it will follow those rules.

Setting BillToContact will also set TaxExemptNumber, TermsCode, TaxAuthorityCode1, TaxAuthorityCode2, TaxAuthorityCode3 if these are defined on the bill-to contact's financial profile (FinancialProfile).

See Also