VintaSoft Barcode .NET SDK 15.0: Documentation for Web developer
Vintasoft.Barcode.Web.Services Namespace / WebBarcodeWriteRequestParams Class / dotCodeInterpretNonDataCharacters Property
Syntax Requirements SeeAlso
In This Topic
    dotCodeInterpretNonDataCharacters Property (WebBarcodeWriteRequestParams)
    In This Topic
    Gets or sets a value indicating whether the barcode writer must interpret non-data characters in DotCode barcode.
    Syntax
    'Declaration
    
    Public Property dotCodeInterpretNonDataCharacters As Boolean
    
    
    public bool dotCodeInterpretNonDataCharacters { get; set; }
    
    
    public: __property bool get_dotCodeInterpretNonDataCharacters();
    public: __property void set_dotCodeInterpretNonDataCharacters(
    bool value
    );
    public:
    property bool dotCodeInterpretNonDataCharacters { bool get(); void set(bool value); }

    Property Value

    True - the barcode writer must interpret non-data characters (Vintasoft.Barcode.BarcodeInfo.NonDataFlags.Fnc1, Vintasoft.Barcode.BarcodeInfo.NonDataFlags.ReaderProgramming, Vintasoft.Barcode.BarcodeInfo.NonDataFlags.CreateDotCodeStructuredAppendCharacter(System.Int32,System.Int32), Vintasoft.Barcode.BarcodeInfo.NonDataFlags.CreateECICharacter(System.Int32) Vintasoft.Barcode.BarcodeInfo.NonDataFlags.SymbolSeparation) and encode them using FNC1, FNC2 and FNC3 flags.
    false - the barcode writer encodes Vintasoft.Barcode.BarcodeInfo.NonDataFlags.Fnc1, Vintasoft.Barcode.BarcodeInfo.NonDataFlags.Fnc2 and Vintasoft.Barcode.BarcodeInfo.NonDataFlags.Fnc3 characters as is.
    Default value is true.
    Requirements

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

    See Also