[]
Gets the mask pattern used by the BC_QRCODE formula result.
Specify any value between 1 and 7; auto configuration is -1.
int Mask { get; }
ReadOnly Property Mask As Integer
worksheet.Range["A1"].Value = "1234567890";
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;
int mask = qrCode.Mask;