RequestInvoices.getInvoice Method

Get the selected invoice, type of invoice.
Public Function getInvoice( _ 
ByVal index As Integer
) As invoice
This language is not supported or no code example is available.
public invoice getInvoice( 
int index 
)
This language is not supported or no code example is available.

Parameters

index
int

The index of the invoice. 
The invoice index can be found in the DataTable of the invoices you retrieved, under a field called "Index."

Return Value

invoice
Remarks
 
To use this method, you need to know the index of the invoice you want to get. See how you can retrieve the index of the Invoice.
Example
 

invoice inv = rqd.getInvoice(0);					
This language is not supported or no code example is available.
Dim inv As invoice = rqd.getInvoice(0)					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition