C#: Online Guide
How To: powerpoint SDK
Text Search
  |  
Home ›› XDoc.PowerPoint ›› C# PowerPoint: Text Search

C# PowerPoint - Search and Find Text in PowerPoint


Learn How to Search Text in PDF Document and Obtain Text Content and Location Information




Overview



RasterEdge XDoc.PowerPoint for .NET allows C# programmers to integrate text search functionality into their PowerPoint document management application. c# itext combine pdf, itextsharp replace text in pdf c#, vb net barcode scanner, vb.net read pdf file text, remove password from pdf using c#, read qr code web camera c#. To be specific, using mature C#.NET APIs, programmers can achieve following aspects.


Related .net document control helps:
c# asp.net word document viewer: ASP.NET Office Word Document Viewer: view Word doc files online using C# in ASP.NET MVC web applications
asp.net edit pdf page using c#: ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
asp.net mvc excel viewer: ASP.NET Excel Viewer in C# Control (MVC & WebForms): view Office Excel document in web browser.
c# asp.net text file viewer: ASP.NET Text file viewer in MVC, WebForms: Open, view, annotate, convert txt files in C# ASP.NET
c# asp.net pdf editor: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
asp.net annotate pdf using c#: ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#
c# asp.net dicom viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET


Easy to search and find text content and get its location details


Allow to search defined PowerPoint file page or the whole document


Support search PowerPoint file with various search options, like whole PowerPoint, ignore case, match string, etc. asp.net open pdf file in web browser using c# vb.net, convert pdf byte array to image c#, c# convert tiff to pdf, vb.net password protect pdf file, vb.net itextsharp pdfreader, c# extract pdf page as image, vb.net add watermark to pdf.




C# PDF: Example of Finding Text



Add references:


  RasterEdge.Imaging.Basic.dll


  RasterEdge.XDoc.PowerPoint.dll


Using namespace:


  using RasterEdge.Imaging.Basic;


  using RasterEdge.XDoc.PowerPoint;


  using RasterEdge.Imaging.Basic.TextSearch;


The following C# coding example illustrates how to perform PowerPoint text searching function in your .NET project, including setting search option, creating search result, and saving the result. pdf editor in asp.net mvc, asp.net remove text from pdf online, asp.net image viewer, asp.net pdf preview, asp.net c# pdf viewer control, asp.net itextsharp add image to pdf, mvc view pdf.




internal static void TestSearch(String fileName, String matchString, String cacheFile)
{

// Set search options.
RESearchOption option = new RESearchOption();
option.SetMatchString(matchString);
option.WholeWord = true;
option.IgnoreCase = true;
option.ContextExpansion = 30;

// It will create a cach file if your PDF document is never been searched before. 
if (!File.Exists(fileName))
{
BaseDocument document = getBaseDocument(TestFilePath.InputFilePath + fileName);
document.CacheSearchInfo(TestFilePath.InputFilePath + cacheFile);
}

// Create search result.
SearchResult sResult = new SearchResult();

// Search and store the result in the entity of search structure.
BaseDocument.Search(TestFilePath.InputFilePath + cacheFile, option, sResult);
}

private static BaseDocument getBaseDocument(String filePath)
{
BaseDocument document = null;
if (filePath.EndsWith(".pdf"))
document = new PDFDocument(filePath);
else if (filePath.EndsWith(".docx"))
document = new DOCXDocument(filePath);
else if (filePath.EndsWith(".xlsx"))
document = new XLSXDocument(filePath);
else if (filePath.EndsWith(".pptx"))
document = new PPTXDocument(filePath);
else
{}
return document;
}