2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
PdfViewerControl does not support directly loading a PDF document from URI. However, you can load a PDF document by converting the URI to ByteArray in the sample level. byte[] pdfDoc = null; var wc = new System.Net.WebClient(); ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; Uri uri = new Uri("http://www.syncfusion.com/downloads/support/directtrac/general/pd/Barcode-1668568277"); //Converts the URI to byte array pdfDoc = wc.DownloadData(uri); PdfLoadedDocument doc = new PdfLoadedDocument(pdfDoc); //Loads the byte array in PdfViewerControl pdfViewerControl1.Load(doc); Sample link: |
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.