在演示文稿中查找和替换文本而不丢失格式
Contents
[
Hide
]
这两种方法遵循以下步骤:
- 打开演示文稿。
- 搜索文本。
- 替换文本。
- 保存演示文稿。
VSTO
private void findReplaceText(string strToFind, string strToReplaceWith)
{
//打开演示文稿
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);
//遍历幻灯片
foreach (PowerPoint.Slide sld in pres.Slides)
//遍历幻灯片中的所有形状
foreach (PowerPoint.Shape shp in sld.Shapes)
{
//访问形状中的文本
string str = shp.TextFrame.TextRange.Text;
//查找要替换的文本
if (str.Contains(strToFind))
//用新文本替换现有文本
{
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)
{
//打开演示文稿
Presentation pres = new Presentation("mytextone.ppt");
//获取演示文稿中的所有文本框
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)
//查找要替换的文本
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.Write("myTextOneAspose.ppt");
}