Hi Vishal,
Thank you very much for considering Aspose.
I would like to inform you that Aspose.Pdf.Kit is not a visual tool, rather it allows you to manipulate existing PDF files using the code. As far as PdfViewer is concerned, it allows you to decode the PDF pages into images, however in order to view this decoded image, you can use some image control as shown in the code snippet below.
//create PdfViewer object
Aspose.Pdf.Kit.PdfViewer viewer = new Aspose.Pdf.Kit.PdfViewer();
//open pdf file
viewer.OpenPdfFile("sample.pdf");
//decode pages into images
Bitmap[] bt = viewer.DecodeAllPages();
//show a particular page's image in an image control
this.pictureBox1.Image = new Bitmap(bt[0]);
However, I would like to add that the output shown like this is static, and you can't edit the pdf forms in this way. Currently, if you have to edit the PDF form then you'll have to show the PDF file directly in the browser or Widows Form.
Moreover, we have logged the new feature requests as PDFKITNET-13041 and PDFKITNET-13042 in our issue tracking system. Our team will look into this and we'll try to provide you the interface in Aspose.Pdf.Kit to show the editable forms. However, this will take some time. You'll be informed via this forum thread once this feature is available.
We're sorry for the inconvenience.
Regards,
Shahzad Latif - [
Follow me on Twitter!]
Support Developer/Developer Evangelist
Aspose Sialkot Team
Aspose - Your File Format Experts
Keep in touch! We're on
Twitter and
Facebook