Aspose.Pdf.Examples.CSharp.AsposePDF.DocumentConversion.PDFToXLS.Run C# (CSharp) Method

Run() public static method

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

            // Load PDF document
            Document pdfDocument = new Document(dataDir + "input.pdf");

            // Instantiate ExcelSave Option object
            Aspose.Pdf.ExcelSaveOptions excelsave = new ExcelSaveOptions();

            // Save the output in XLS format
            pdfDocument.Save("PDFToXLS_out.xls", excelsave);
            // ExEnd:PDFToXLS
        }
        public static void ControlColumn()