BarcodeScannerReport.ScanDataLabel Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the decoded barcode label, which does not include the header, checksum, and other miscellaneous information.
public:
property IBuffer ^ ScanDataLabel { IBuffer ^ get(); };
IBuffer ScanDataLabel();
public IBuffer ScanDataLabel { get; }
var iBuffer = barcodeScannerReport.scanDataLabel;
Public ReadOnly Property ScanDataLabel As IBuffer
Property Value
The data stream containing the decoded barcode label.
Examples
For a code example showing how to retrieve a string from an IBuffer, see IBuffer interface
Remarks
If IsDecodeDataEnabled is true, then this property contains the decoded barcode label. If IsDecodeDataEnabled is false, then this property is set to null
.