VintaSoft Barcode .NET SDK 15.1: 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
    
    <DescriptionAttribute("Barcode reader must search Code 39 barcodes without Start/Stop symbols.")>
    <DefaultValueAttribute(False)>
    Public Property SearchCode39WithoutStartStop As Boolean
    
    
    [Description("Barcode reader must search Code 39 barcodes without Start/Stop symbols.")]
    [DefaultValue(False)]
    public bool SearchCode39WithoutStartStop { get; set; }
    
    
    [Description("Barcode reader must search Code 39 barcodes without Start/Stop symbols.")]
    [DefaultValue(False)]
    public: __property bool get_SearchCode39WithoutStartStop();
    public: __property void set_SearchCode39WithoutStartStop(
    bool value
    );
    [Description("Barcode reader must search Code 39 barcodes without Start/Stop symbols.")]
    [DefaultValue(False)]
    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: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also