myDATATools.getFuelCode Method

Gets the Fuel Codes, as Dictionary(Of Integer, String) 
Fuel Codes are used for the field invoiceLine.fuelCode
The fuel code '999' is used in cases where, in addition to fuel, there is a need to invoice other charges of small amounts in a document.
Public Function getFuelCode( _ 
Optional ByVal English As Boolean = False _ 
) As Dictionary(Of Integer, String)
This language is not supported or no code example is available.
public Dictionary<int, string> getFuelCode( 
bool English = False 
)
This language is not supported or no code example is available.

Parameters

English
bool

Optional. If True, the result in English terms. Default is False

Return Value

Dictionary<int, string>
Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 Dictionary<int, string> result = mdt.getFuelCode(true);
 					
This language is not supported or no code example is available.
 Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
 Dim result As Dictionary(Of Integer, String) = mdt.getFuelCode(True)
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition