ImageGear .NET v25.2 - Updated
ImageGear.Barcode Assembly / ImageGear.Barcode Namespace / ImGearBarcodeReader Class / InkColor Property




In This Topic
    InkColor Property
    In This Topic
    Gets or sets the ink color of barcodes to search for during recognition processing.
    Syntax
    'Declaration
     
    Public Property InkColor As ImGearBarcodeInkColorInfo
    'Usage
     
    Dim instance As ImGearBarcodeReader
    Dim value As ImGearBarcodeInkColorInfo
     
    instance.InkColor = value
     
    value = instance.InkColor
    public ImGearBarcodeInkColorInfo InkColor {get; set;}
    public: __property ImGearBarcodeInkColorInfo get_InkColor();
    public: __property void set_InkColor( 
       ImGearBarcodeInkColorInfo value
    );
    public:
    property ImGearBarcodeInkColorInfo InkColor {
       ImGearBarcodeInkColorInfo get();
       void set (    ImGearBarcodeInkColorInfo value);
    }

    Property Value

    The InkColor enumeration set.
    Remarks

    The barcode recognition engine is capable of detecting barcodes in an image without any prior knowledge of the barcode color. However, you can speed up the recognition process by specifying a barcode color.

    Default value: ImGearBarcodeInkColorInfo.Black

    See Also