[]
Gets the character code information used by the BC_QRCODE formula result.
This value maps to the tenth argument of the BC_QRCODE formula and is distinct
from the QRCode content stored in the referenced cell.
string CharCode { get; }
ReadOnly Property CharCode As String
worksheet.Range["A1"].Value = "Example";
worksheet.Range["B1"].Formula = "=BC_QRCODE(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",\"L\",2,\"auto\",\"auto\",FALSE,0,\"1234567890\",\"UTF-8\",4,4,4,4)";
IQRCode qrCode = (IQRCode) worksheet.Range["B1"].Value;
string qrContent = qrCode.Value;
string charCode = qrCode.CharCode;