البحث والاستبدال في العرض التقديمي

فيما يلي الخطوات التي يجب اتباعها:

  1. افتح عرضًا تقديميًا.
  2. ابحث عن النص.
  3. استبدل النص.
  4. احفظ العرض التقديمي.

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

//افتح العرض التقديمي

Presentation pres = new Presentation(FilePath + "Find and Replace.pptx");

//احصل على جميع صناديق النص في العرض التقديمي

ITextFrame[] tb = SlideUtil.GetAllTextBoxes(pres.Slides[0]);

for (int i = 0; i < tb.Length; i++)

foreach (Paragraph para in tb[i].Paragraphs)

    foreach (Portion port in para.Portions)

        //ابحث عن النص المراد استبداله

        if (port.Text.Contains(strToFind))

        //استبدل النص الحالي بالنص الجديد

        {

            string str = port.Text;

            int idx = str.IndexOf(strToFind);

            string strStartText = str.Substring(0, idx);

            string strEndText = str.Substring(idx + strToFind.Length, str.Length - 1 - (idx + strToFind.Length - 1));

            port.Text = strStartText + strToReplaceWith + strEndText;

        }

pres.Save(FilePath + "Find and Replace.pptx",Aspose.Slides.Export.SaveFormat.Pptx);


تحميل كود العينة