تخصيص العرض التقديمي

تغيير اللغة لنص العرض التقديمي والشكل

  • إنشاء مثيل من Presentation class.
  • الحصول على مرجع من الشريحة باستخدام فهرسها.
  • إضافة IAutoShape من نوع Rectangle إلى الشريحة.
  • إضافة بعض النصوص إلى TextFrame.
  • تعيين معرف اللغة للنص.
  • كتابة العرض التقديمي كملف PPTX.

تم توضيح تنفيذ الخطوات المذكورة أعلاه في المثال أدناه.

Presentation pres = new Presentation("test.pptx");
try {
    IAutoShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.Rectangle, 50, 50, 200, 50);
    shape.addTextFrame("النص لتطبيق لغة التدقيق الإملائي");

    shape.getTextFrame().getParagraphs().get_Item(0).getPortions().get_Item(0).getPortionFormat().setLanguageId("en-EN");

    pres.save("output.pptx", SaveFormat.Pptx);
} finally {
    if (pres != null) pres.dispose();
}