VintaSoft Barcode .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Barcode Namespace / WriterSettings Class / UseLegacyVectorGenerator Property
Syntax Requirements SeeAlso
In This Topic
    UseLegacyVectorGenerator Property (WriterSettings)
    In This Topic
    Gets or sets a value indicating whether the legacy vector generator must be used.
    Syntax
    'Declaration
    
    <DescriptionAttribute("A value indicating whether the legacy vector generator must be used.")>
    <DefaultValueAttribute(True)>
    <CategoryAttribute("Common")>
    Public Property UseLegacyVectorGenerator As Boolean
    
    
    [Description("A value indicating whether the legacy vector generator must be used.")]
    [DefaultValue(True)]
    [Category("Common")]
    public bool UseLegacyVectorGenerator { get; set; }
    
    
    [Description("A value indicating whether the legacy vector generator must be used.")]
    [DefaultValue(True)]
    [Category("Common")]
    public: __property bool get_UseLegacyVectorGenerator();
    public: __property void set_UseLegacyVectorGenerator(
    bool value
    );
    [Description("A value indicating whether the legacy vector generator must be used.")]
    [DefaultValue(True)]
    [Category("Common")]
    public:
    property bool UseLegacyVectorGenerator { bool get(); void set(bool value); }

    Property Value

    True - the barcode generator should use legacy vector generator, i.e. vector barcode will be generated without barcode text;
    False - the barcode generator should use new vector generator, i.e. vector barcode will be generated with barcode text (generated vector barcode is equal to the generated raster barcode)
    Default value is true (for compatibility with previous versions of barcode generator).
    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