Redact PPS Files via C# in .NET Core Apps

Search & Replace Text in Office & OpenOffice Documents, Spreadsheets & Presentations as well as PPS on Windows, Linux & macOS


Document Redaction for .NET API

A single format-independent interface for redacting sensitive and classified information from the PDF, Word, Excel, PowerPoint documents and images, including the ability to change metadata and remove comments. With GroupDocs.Redaction for .NET tool you can redact text and save redacted document in PDF, transforming all pages into raster images or keep the document in its original format for further editing.

Redact Exact Text from PPS via C#

GroupDocs.Redaction makes it easy for .NET developers to add PPS file redaction feature with a few easy steps.

Get Started with Redaction API

Install from command line as nuget install GroupDocs.Redaction or via Package Manager Console of Visual Studio with Install-Package GroupDocs.Redaction. Alternatively, get the offline MSI installer or DLLs in a ZIP file from downloads, and reference it in your project manually.

using (Redactor redactor = new Redactor(@"sample.pps"))
{
	redactor.Apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]")));
	redactor.Save();
}

PPS Live Demo

Checkout the free online demo for PPS .

No need to set up

No need to write any code

Just upload the source file

Get the download link

What is PPS File Format?

PPS, PowerPoint Slide Show, files are created using Microsoft PowerPoint for Slide Show purpose. PPS file reading and creation is supported by Microsoft PowerPoint 97-2003. The more latest version of this file format is PPSX which is based on Office OpenXML standards. PPS files can still be read by latest versions of Microsoft PowerPoint, but newly created files can only be saved in PPSX file format. When a PPS file is shared with another user and opened, it starts as Powerpoint show unlike PPT file which opens in editable mode.

Read More

Other Options

CSV

(Comma Seperated Values)

DOC

(Microsoft Word Binary Format)

DOCM

(Microsoft Word 2007 Marco File)

DOCX

(Office 2007+ Word Document)

DOT

(Microsoft Word Template Files)

DOTM

(Microsoft Word 2007+ Template File)

DOTX

(Microsoft Word Template File )

PDF

(Portable Document Format)

POT

(Microsoft PowerPoint Template Files)

POTM

(Microsoft PowerPoint Template File)

PPSM

(Macro-enabled Slide Show)

PPSX

(PowerPoint Slide Show)

PPT

(Microsoft PowerPoint 97-2003)

PPTM

(Macro-enabled Presentation File)

PPTX

(Open XML presentation Format)

RTF

(Rich Text Format)

XLS

(Microsoft Excel Spreadsheet (Legacy))

XLSM

(Macro-enabled Spreadsheet)

XLSX

(Open XML Workbook)

XLT

(Excel 97 - 2003 Template)

XLTM

(Excel Macro-Enabled Template)

XLTX

(Excel Template)

Back to top