Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.6.22
|
Leadtools.Barcode Namespace > BarcodeReader Class : GetAvailableSymbologies Method |
public BarcodeSymbology[] GetAvailableSymbologies()
'Declaration
Public Function GetAvailableSymbologies() As BarcodeSymbology()
'Usage
Dim instance As BarcodeReader Dim value() As BarcodeSymbology value = instance.GetAvailableSymbologies()
public BarcodeSymbology[] GetAvailableSymbologies()
@property (nonatomic, strong, readonly) NSArray<NSNumber *> *availableSymbologies
public BarcodeSymbology[] getAvailableSymbologies()
function Leadtools.Barcode.BarcodeReader.GetAvailableSymbologies()
public: array<BarcodeSymbology>^ GetAvailableSymbologies();
The GetSupportedSymbologies returns all the barcode symbologies (types) supported by LEADTOOLS. Depending on the level of unlocked support and availability of the back-end barcode assemblies, not all of the supported types may be available. For example, if the Leadtools.Barcode.QrRead.dll assembly is missing, QR read support will not be available to your application.
To get a list of the barcode symbologies available for reading, use BarcodeReader.GetAvailableSymbologies and to get a list of the barcode symbologies available for writing, use BarcodeWriter.GetAvailableSymbologies.
To get the friendly name of any barcode symbology, use BarcodeEngine.GetSymbologyFriendlyName.
For an example, refer to BarcodeEngine.GetSupportedSymbologies.