商都网教育宝典宝库计算机等级考试用C#实现在PowerPoint文档中搜索文本
[align=left]string filename="";PowerPoint.Application pa=new PowerPoint.ApplicationClass();PowerPoint.Presentation pp=pa.Presentations.Open(filename, Microsoft.Office.Core.MsoTriState.msoTrue, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse);
[align=left]string[] strKeyWordList={}; //要搜索的文本PowerPoint.TextRange oText;foreach(PowerPoint.Slide slide in pp.Slides){ foreach(PowerPoint.Shape shape in slide.Shapes) { foreach(string strKeyWord in strKeyWordList) { oText=null; oText=shape.TextFrame.TextRange.Find(strKeyWord,0,Microsoft.Office.Core.MsoTriState.msoFalse,Microsoft.Office.Core.MsoTriState.msoTrue); if (oText!=null) { MessageBox.Show("文档中包含指定的关键字 "+strKeyWord+" !","搜索结果",MessageBoxButtons.OK); continue; } }