ImageGear .NET v25.2 - Updated
ImageGear.Barcode Assembly / ImageGear.Barcode Namespace / ImGearBarcodeWriterBase Class / BarcodeValueAsByte Property




In This Topic
    BarcodeValueAsByte Property
    In This Topic
    Gets or sets the current barcode value as an array of bytes.
    Syntax
    'Declaration
     
    Public Property BarcodeValueAsByte As Byte()
    'Usage
     
    Dim instance As ImGearBarcodeWriterBase
    Dim value() As Byte
     
    instance.BarcodeValueAsByte = value
     
    value = instance.BarcodeValueAsByte
    public byte[] BarcodeValueAsByte {get; set;}
    public: __property byte[]* get_BarcodeValueAsByte();
    public: __property void set_BarcodeValueAsByte( 
       byte[][]* value
    );
    public:
    property array<byte>^ BarcodeValueAsByte {
       array<byte>^ get();
       void set (    array<byte>^ value);
    }

    Property Value

    A string value which represents the value of the barcode.
    Remarks

    The default valueis an empty string "".

    Use BarcodeValueAsByte property only if non-ASCII text values are needed.

    See Also