Buscar y Reemplazar en Presentación
Contents
[
Hide
]
Los siguientes son los pasos a seguir:
- Abre una presentación.
- Busca el texto.
- Reemplaza el texto.
- Escribe la presentación.
string FilePath = @"..\..\..\Archivos de muestra\";
//Abre la presentación
Presentation pres = new Presentation(FilePath + "Buscar y Reemplazar.pptx");
//Obtén todos los cuadros de texto en la presentación
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)
//Encuentra el texto que debe ser reemplazado
if (port.Text.Contains(strToFind))
//Reemplaza el texto existente con el nuevo texto
{
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 + "Buscar y Reemplazar.pptx",Aspose.Slides.Export.SaveFormat.Pptx);