Trouver et remplacer du texte sans perdre le format dans la présentation

Les deux méthodes suivent ces étapes :

  • Ouvrir une présentation.
  • Rechercher le texte.
  • Remplacer le texte.
  • Enregistrer la présentation.

VSTO


 private void findReplaceText(string strToFind, string strToReplaceWith)

{

//Ouvrir la présentation

PowerPoint.Presentation pres = null;

pres = Globals.ThisAddIn.Application.Presentations.Open("mytextone.ppt",

						  Microsoft.Office.Core.MsoTriState.msoFalse,

						  Microsoft.Office.Core.MsoTriState.msoFalse,

						  Microsoft.Office.Core.MsoTriState.msoFalse);

//Parcourir les diapositives

foreach (PowerPoint.Slide sld in pres.Slides)

	//Parcourir toutes les formes dans la diapositive

	foreach (PowerPoint.Shape shp in sld.Shapes)

	{

		//Accéder au texte dans la forme

		string str = shp.TextFrame.TextRange.Text;

		//Trouver le texte à remplacer

		if (str.Contains(strToFind))

		//Remplacer le texte existant par le nouveau texte

		{

			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));

			shp.TextFrame.TextRange.Text = strStartText + strToReplaceWith + strEndText;

		}

		pres.SaveAs("MyTextOne___.ppt",

		PowerPoint.PpSaveAsFileType.ppSaveAsPresentation,

		Microsoft.Office.Core.MsoTriState.msoFalse);

	}

Aspose.Slides


 private static void findReplaceText(string strToFind, string strToReplaceWith)

{

	//Ouvrir la présentation

	Presentation pres = new Presentation("mytextone.ppt");

	//Obtenir toutes les zones de texte dans la présentation

	ITextBox[] tb = PresentationScanner.GetAllTextBoxes(pres, false);

	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.Write("myTextOneAspose.ppt");

}

Télécharger le code source d’exemple