Welcome to the WinForms feedback portal. We’re happy you’re here! If you have feedback on how to improve the WinForms, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
dmBarcode = new PdfDataMatrixBarcode();
dmBarcode.Size = PdfDataMatrixSize.Auto;
dmBarcode.Text="12345678901234567890";
// always prints {Width=0, Height=0}
Console.WriteLine((dmBarcode as PdfBidimensionalBarcode).Size);
PdfBidimensionalBarcode qrBarcode = new PdfQRBarcode();
qrBarcode.Version = QRCodeVersion.Auto;
qrBarcode.Text="1234567890123456789012345678901234567890";