DigitalCustomers.GetCustomer Method
Public Function GetCustomer( _
ByVal index As Integer _
) As CustomerData
This language is not supported or no code example is available.
Parameters
- index
 - int
 
	The index of the customer. 
The customer index can be found in the DataTable of the customers you retrieved, under a field called "Index." 
Return Value
CustomerDataCustomerData cust = dgc.GetCustomer(0); string CustVatNumber = cust.customerVatNumber;
This language is not supported or no code example is available.