VintaSoft Barcode .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Barcode Namespace / WriterSettings Class / DotCodeInterpretNonDataCharacters Property
Syntax Requirements SeeAlso
In This Topic
    DotCodeInterpretNonDataCharacters Property (WriterSettings)
    In This Topic
    Gets or sets a value indicating whether the barcode writer must interpret non-data characters in DotCode barcode.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(True)>
    <DescriptionAttribute("A value indicating whether the barcode writer must interpret non-data characters in DotCode barcode.")>
    Public Property DotCodeInterpretNonDataCharacters As Boolean
    
    
    [DefaultValue(True)]
    [Description("A value indicating whether the barcode writer must interpret non-data characters in DotCode barcode.")]
    public bool DotCodeInterpretNonDataCharacters { get; set; }
    
    
    [DefaultValue(True)]
    [Description("A value indicating whether the barcode writer must interpret non-data characters in DotCode barcode.")]
    public: __property bool get_DotCodeInterpretNonDataCharacters();
    public: __property void set_DotCodeInterpretNonDataCharacters(
    bool value
    );
    [DefaultValue(True)]
    [Description("A value indicating whether the barcode writer must interpret non-data characters in DotCode barcode.")]
    public:
    property bool DotCodeInterpretNonDataCharacters { bool get(); void set(bool value); }

    Property Value

    True - the barcode writer must interpret non-data characters (Fnc1, ReaderProgramming, CreateDotCodeStructuredAppendCharacter(Int32,Int32), CreateECICharacter(Int32) SymbolSeparation) and encode them using FNC1, FNC2 and FNC3 flags.
    false - the barcode writer encodes Fnc1, Fnc2 and Fnc3 characters as is.
    Default value is true.
    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