[]
Gets the character set used by the BC_QRCODE formula result.
This value specifies which charset is used to encode the QRCode. Optional
charsets include UTF-8, SHIFT-JIS, and SHIFT_JIS.
string CharSet { get; }
ReadOnly Property CharSet 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,,\"UTF-8\",4,4,4,4)";
IQRCode qrCode = (IQRCode) worksheet.Range["B1"].Value;
string charSet = qrCode.CharSet;