Aspose.Pdf.Examples.CSharp.AsposePDFFacades.Pages.MakeNUp.MakeNUpUsingPaths.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // ExStart:MakeNUpUsingPaths
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_AsposePdfFacades_Pages();

            // Create PdfFileEditor object
            PdfFileEditor pdfEditor = new PdfFileEditor();
            // Make NUp
            pdfEditor.MakeNUp(dataDir + "input.pdf", dataDir + "input2.pdf", "MakeNUpUsingPaths_out.pdf");
            // ExEnd:MakeNUpUsingPaths
        }
    }
MakeNUpUsingPaths