RFBARCODE.SetBarcodeType
RFBARCODE.SetDecode
RFBARCODE.SetExpand
RFBARCODE.SetMaxLength
RFBARCODE.SetMinLength

boolean SetBarcodeType(short nBarcodeType, short nDex);
boolean SetDecode(short nDecodeVal, short nDex);
boolean SetExpand(boolean bExpand, short nDex);
boolean SetMaxLength(short nMaxLength, short nDex);
boolean SetMinLength(short nMinLength, short nDex);

Function SetBarcodeType(nBarcodeType As Integer, nDex As Integer) As Boolean
Function SetDecode(
nDecodeVal As Integer, nDex As Integer) As Boolean
Function SetExpand(
bExpand As Boolean, nDex As Integer) As Boolean
Function SetMaxLength(
nMaxLength As Integer, nDex As Integer) As Boolean
Function SetMinLength(
nMinLength As Integer, nDex As Integer) As Boolean

Sets one item value in the local configuration array.

Return value
True = function successful.
False = error, unknown barcode type, nDex out of range. 

Parameters

nDex
    Index in the local items array (0 based).

nBarcodeType
    CODE_39, UPC_A, UPC_E0, EAN_13, EAN_8, CODE_D25, CODE_I25, CODABAR, CODE_128, CODE_93, CODE_11, MSI, UPC_E1, PDF_417, 25_IATA UCC_128, B_UPC, TO_39, DATAMATRIX.

bExpand
    False=Not expand (EAN family) True=Expand.

nDecode
    DECODEON=decode this symbology, DECODEOFF=do not decode this symbology..

nMin
    Minimum length of this symbology.

nMax
    Maximum length of this symbology.

Remarks
The item pointed by nDex must exist in the array. See BarcodeCount().
One symbology (barcode type) should not appear more than once (have more than one item) in a barcode configuration.
Use this functions to modify existing items, use AddBarcode() to add them.

See also    RFBARCODE, BarcodeCount, AddBarcode