VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / WriterSettings Class / ProcessSpecialSymbols Property
Syntax Remarks Example Requirements SeeAlso
In This Topic
    ProcessSpecialSymbols Property (WriterSettings)
    In This Topic
    Gets or sets a value indicating whether the barcode writer processes the special symbols in barcode value.
    Syntax
    'Declaration
    
    <CategoryAttribute("Common")>
    <DescriptionAttribute("Barcode writer processes the special symbols in barcode value.")>
    <DefaultValueAttribute(True)>
    Public Property ProcessSpecialSymbols As Boolean
    
    
    [Category("Common")]
    [Description("Barcode writer processes the special symbols in barcode value.")]
    [DefaultValue(True)]
    public bool ProcessSpecialSymbols { get; set; }
    
    
    [Category("Common")]
    [Description("Barcode writer processes the special symbols in barcode value.")]
    [DefaultValue(True)]
    public: __property bool get_ProcessSpecialSymbols();
    public: __property void set_ProcessSpecialSymbols(
    bool value
    );
    [Category("Common")]
    [Description("Barcode writer processes the special symbols in barcode value.")]
    [DefaultValue(True)]
    public:
    property bool ProcessSpecialSymbols { bool get(); void set(bool value); }

    Property Value

    false - barcode writer does not process the special characters in barcode value;
    true - barcode writer processes the special characters in barcode value.
    Default value is true.
    Remarks

    Avaiable special symbols for barcodes:

    • Aztec: , , .
    • MaxiCode: , .
    • DataMatrix: , , , , , .
    • Code 128: , , , .
    • Code 16K: , , , , , .
    • QR: , , .
    • PDF417, PDF417 Compact: , , , , .
    • Micro PDF417: , , , , , , , , , .
    • RSS Expanded, RSS Expanded Stacked: .

    Example

    Please see example here.

    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