VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / SearchCode39WithoutStartStop Property
Syntax Remarks Requirements SeeAlso
In This Topic
    SearchCode39WithoutStartStop Property (ReaderSettings)
    In This Topic
    Gets or sets a value indicating whether the barcode reader must search Code 39 barcodes without Start/Stop symbols.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(False)>
    <DescriptionAttribute("Barcode reader must search Code 39 barcodes without Start/Stop symbols.")>
    Public Property SearchCode39WithoutStartStop As Boolean
    
    
    [DefaultValue(False)]
    [Description("Barcode reader must search Code 39 barcodes without Start/Stop symbols.")]
    public bool SearchCode39WithoutStartStop { get; set; }
    
    
    [DefaultValue(False)]
    [Description("Barcode reader must search Code 39 barcodes without Start/Stop symbols.")]
    public: __property bool get_SearchCode39WithoutStartStop();
    public: __property void set_SearchCode39WithoutStartStop(
    bool value
    );
    [DefaultValue(False)]
    [Description("Barcode reader must search Code 39 barcodes without Start/Stop symbols.")]
    public:
    property bool SearchCode39WithoutStartStop { bool get(); void set(bool value); }

    Property Value

    False - barcode reader must search Code 39 barcodes with Start/Stop (*) symbols only.
    True - barcode reader must search Code 39 barcodes with and without Start/Stop (*) symbols.
    Remarks

    Code 39 barcodes without Start/Stop symbols do not have the direction marker and therefore barcodes can be read in 2 directions, each direction has different value.

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also