الوصول إلى تقديم OpenDocument

يقدم Aspose.Slides لـ .NET فئة Presentation التي تمثل ملف تقديم. يمكن الآن لفئة Presentation أيضًا الوصول إلى ODP من خلال منشئ Presentation عند إنشاء الكائن.

مثال


 string FilePath = @"..\..\..\Sample Files\";

string srcFileName = FilePath + "OpenDocument Presentation.odp";

string destFileName = FilePath + "OpenDocument Presentation.pptx";

// إنشاء كائن Presentation يمثل ملف تقديم

using (Presentation pres = new Presentation(srcFileName))

{

    // حفظ التقديم بصيغة PPTX

    pres.Save(destFileName, SaveFormat.Pptx);

}

تحميل مثال الشيفرة

تحميل مثال التشغيل