BarcodeData Property (WriterBase)
In This Topic
Gets and sets the current barcode value as an array of bytes.
Syntax
'Declaration
Public Property BarcodeData As Byte()
'Usage
Dim instance As WriterBase
Dim value() As Byte
instance.BarcodeData = value
value = instance.BarcodeData
public byte[] BarcodeData {get; set;}
public: __property byte[]* get_BarcodeData();
public: __property void set_BarcodeData(
byte[][]* value
);
public:
property array<byte>^ BarcodeData {
array<byte>^ get();
void set ( array<byte>^ value);
}
Property Value
A string value which represents the value of the barcode.
See Also