Aspose.Slides.Examples.CSharp.Conversion.ConvertWithNoteToTiff.Run C# (CSharp) 메소드

Run() 공개 정적인 메소드

public static Run ( ) : void
리턴 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 pres = new Presentation(dataDir + "ConvertWithNoteToTiff.pptx"))
            {
                // Saving the presentation to TIFF notes
                pres.Save(dataDir + "TestNotes_out.tiff", SaveFormat.TiffNotes);
            }
        }
    }
ConvertWithNoteToTiff