string filePath = "Your PDF File Path";
// Initialize a CPDFDocument object with the path to the PDF file
CPDFDocument document = CPDFDocument.InitWithFilePath(filePath);
// Initialize a CPDFViewer object and display it
CPDFViewer pdfViewer = new CPDFViewer();
pdfViewer.InitDocument(document);
pdfViewer.Load();