Wacom Ink SDK for devices
How to read the barcode from the Wacom Clipboard (PHU-111)
The following code will do this:
private void Device_BarCodeScanned(object sender, Wacom.SmartPadCommunication.BarcodeScannedEventArgs e)
{
byte[] data = e.BarcodeData;
if (data != null)
{
Debug.WriteLine($"Barcode data ({data.Length}):");
foreach (byte b in data)
{
Debug.WriteLine(b.ToString());
}
}
}