VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / WriterSettings Class / PrintableValue Property
Syntax Requirements SeeAlso
In This Topic
    PrintableValue Property (WriterSettings)
    In This Topic
    Gets or sets text that must be printed under barcode.
    Syntax
    'Declaration
    
    <DefaultValueAttribute("")>
    <CategoryAttribute("Barcode Printable Value")>
    <DescriptionAttribute("Text that must be printed under barcode.")>
    Public Property PrintableValue As String
    
    
    [DefaultValue("")]
    [Category("Barcode Printable Value")]
    [Description("Text that must be printed under barcode.")]
    public string PrintableValue { get; set; }
    
    
    [DefaultValue("")]
    [Category("Barcode Printable Value")]
    [Description("Text that must be printed under barcode.")]
    public: __property string* get_PrintableValue();
    public: __property void set_PrintableValue(
    string* value
    );
    [DefaultValue("")]
    [Category("Barcode Printable Value")]
    [Description("Text that must be printed under barcode.")]
    public:
    property string^ PrintableValue { string^ get(); void set(string^ value); }

    Property Value

    null - barcode writer will print value of Value property under barcode;
    not null - barcode writer will print value of this property under barcode.
    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