ImageGear .NET v25.2 - Updated
ImageGear.Barcode Assembly / ImageGear.Barcode Namespace / ImGearBarcodeResult Class / BarcodeName Property




In This Topic
    BarcodeName Property
    In This Topic
    Gets the name of the recognized barcode.
    Syntax
    'Declaration
     
    Public ReadOnly Property BarcodeName As String
    'Usage
     
    Dim instance As ImGearBarcodeResult
    Dim value As String
     
    value = instance.BarcodeName
    public string BarcodeName {get;}
    public: __property string* get_BarcodeName();
    public:
    property String^ BarcodeName {
       String^ get();
    }

    Property Value

    A string value which represents the name of the barcode.
    Remarks

    This property gets the name of the barcode (e.g. "Code39"), not the value of the barcode. The BarcodeValue property returns the value of the barcode.

    If ImGearBarcodeReader.ReturnPossibleBarcodes is True, and only a region of interest is returned in the results, then the barcode name is a null string.

    See the ImGearBarcodeResult for more information about retrieving results.

    See Also