Aspose.Slides.Examples.CSharp.Presentations.Conversion.ConversionToTIFFNotes.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_Conversion();

            // Instantiate a Presentation object that represents a presentation file
            using (Presentation presentation = new Presentation(dataDir + "NotesFile.pptx"))
            {
                // Saving the presentation to TIFF notes
                presentation.Save(dataDir + "Notes_In_Tiff_out.tiff", SaveFormat.TiffNotes);
            }
        } 
    }
ConversionToTIFFNotes