Aspose.Slides.Examples.CSharp.Presentations.Properties.AccessOpenDoc.Run C# (CSharp) Method

Run() public static method

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

            // Open the ODP file
            Presentation pres = new Presentation(dataDir + "AccessOpenDoc.odp");

            // Saving the ODP presentation to PPTX format
            pres.Save(dataDir + "AccessOpenDoc_out.pptx", SaveFormat.Pptx);

        }
    }
AccessOpenDoc