Supplies the name of a barcode type corresponding to a icode value (eg. Code 39 is icode=0 – see the table above)
VB declaration
Declare Function getName Lib "DFONT32.DLL" (ByRef icode As Long, ByVal name As String) As Long
C declaration
int WINAPI getName(LPINT icode, LPSTR name);
where icode refers to the codetype whose barcode type name is required, and name is a buffer to receive the name as a string. Note that name MUST be predefined to allow for 24 characters or an error may result.
More: