Aspose.Pdf.Examples.CSharp.AsposePDFFacades.Pages.ConcatenateDocuments.ConcatenateArrayOfFilesWithPath.RenderInBrowser C# (CSharp) Method

RenderInBrowser() public static method

public static RenderInBrowser ( ) : void
return void
        public static void RenderInBrowser()
        {
            // ExStart:RenderInBrowser
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_AsposePdfFacades_Pages();
     
            // Array of files
            string[] filesArray = new string[2];
            filesArray[0] = dataDir + "input.pdf";
            filesArray[1] = dataDir + "input2.pdf";
            // Create PdfFileEditor object
            PdfFileEditor pdfEditor = new PdfFileEditor();
            // Display the resultant concatenated PDF file in 
            pdfEditor.Concatenate(filesArray, dataDir + "RenderInBrowser_out.pdf");
            // ExEnd:RenderInBrowser
        }
ConcatenateArrayOfFilesWithPath