Barcode Xpress for .NET Framework v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / Reader Class / Code39StartStopPatternsAreMandatory Property




In This Topic
    Code39StartStopPatternsAreMandatory Property
    In This Topic
    Gets and sets a value which determines whether or not Barcode Xpress will find and decode Code 39 / Code 39 Extended barcodes when their start and stop patterns are missing.
    Syntax
    'Declaration
     
    Public Property Code39StartStopPatternsAreMandatory As Boolean
    'Usage
     
    Dim instance As Reader
    Dim value As Boolean
     
    instance.Code39StartStopPatternsAreMandatory = value
     
    value = instance.Code39StartStopPatternsAreMandatory
    public bool Code39StartStopPatternsAreMandatory {get; set;}
    public: __property bool get_Code39StartStopPatternsAreMandatory();
    public: __property void set_Code39StartStopPatternsAreMandatory( 
       bool value
    );
    public:
    property bool Code39StartStopPatternsAreMandatory {
       bool get();
       void set (    bool value);
    }

    Property Value

    A boolean value which represents whether or not Barcode Xpress will search for Code 39 / Code 39 Extended barcodes without start and stop patterns.
    Remarks

    If this property is set to true then only regular (barcode has both start and stop patterns) barcodes are recognized. When this property is set to false then both regular and barcodes without start/stop patterns are recognized. This is relevant for Code39 and Code39 Extended barcode symbologies.

    Default value: true

    See Also