VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / WriterSettings Class / Value Property
Syntax Remarks Requirements SeeAlso
In This Topic
    Value Property (WriterSettings)
    In This Topic
    Gets or sets the value of the barcode.
    Syntax
    'Declaration
    
    <DescriptionAttribute("Value of the barcode to be created.")>
    <DefaultValueAttribute("")>
    <CategoryAttribute("Barcode")>
    Public Property Value As String
    
    
    [Description("Value of the barcode to be created.")]
    [DefaultValue("")]
    [Category("Barcode")]
    public string Value { get; set; }
    
    
    [Description("Value of the barcode to be created.")]
    [DefaultValue("")]
    [Category("Barcode")]
    public: __property string* get_Value();
    public: __property void set_Value(
    string* value
    );
    [Description("Value of the barcode to be created.")]
    [DefaultValue("")]
    [Category("Barcode")]
    public:
    property string^ Value { string^ get(); void set(string^ value); }
    Remarks

    Barcode writer will optimize this value to reduce matrix size if 2D barcode must be generated. Use ValueItems property if optimization must be disabled.

    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