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.
See Also