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

Run() public static method

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

            // Create PdfFileEditor object
            PdfFileEditor pdfEditor = new PdfFileEditor();
            // Make NUp
            pdfEditor.MakeNUp(dataDir + "MultiplePages.pdf", dataDir + "MakeNUpUsingPageSizeAndPaths_out.pdf", 2, 3, PageSize.A5);
            // ExEnd:MakeNUpUsingPageSizeAndPaths
        }
    }
MakeNUpUsingPageSizeAndPaths