Trouver et Remplacer dans une Présentation
Contents
[
Hide
]
Voici les étapes à suivre :
- Ouvrir une présentation.
- Rechercher le texte.
- Remplacer le texte.
- Enregistrer la présentation.
string FilePath = @"..\..\..\Sample Files\";
//Ouvrir la présentation
Presentation pres = new Presentation(FilePath + "Find and Replace.pptx");
//Obtenir toutes les zones de texte dans la présentation
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)
//Trouver le texte à remplacer
if (port.Text.Contains(strToFind))
//Remplacer le texte existant par le nouveau texte
{
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);