'''' This code is part of Document Solutions for PDF .NET demos.'' Copyright (c) MESCIUS inc. All rights reserved.''ImportsSystem.IOImportsGrapeCity.Documents.Pdf PublicClassClonePagePublicFunctionCreatePDF(ByVal stream AsStream) AsIntegerDim doc = NewGcPdfDocument()Using fs = File.OpenRead(Path.Combine("Resources", "PDFs", "Wetlands.pdf")) doc.Load(fs) ' Clone the first page of the PDF, insert it into the beginning of the document: doc.Pages.ClonePage(0, 0, True, True) ' Save the PDF: doc.Save(stream)Return doc.Pages.CountEndUsingEndFunctionEndClass