GroupDocs.Redaction for .NET Core Functions

Remove Metadata in PPTX Using .NET Tools

Hide sensitive metadata in PPTX files using C#. Ideal for business and personal privacy.

Erase Hidden Metadata in Pptx Files

GroupDocs.Redaction helps your .NET solutions clean up hidden data easily.

  1. Create a Redactor instance and load the Pptx file.
  2. Configure redaction rules for metadata fields.
  3. Apply redaction to remove the data.
  4. Save your redacted file.
// Delete metadata in PPTX

// Open the file using Redactor
using (Redactor redactor  = new Redactor("input.pptx"))
{
    // Set redaction for metadata cleanup
    var redaction = new EraseMetadataRedaction(MetadataFilters.All);
    
    // Apply and save file
    redactor.Apply(redaction);
    redactor.Save();
}
dotnet add package GroupDocs.Redaction
click to copy
copied
More examples Documentation

Extra Redaction Tools for Any File

GroupDocs.Redaction for .NET supports redacting content across different formats. Make sure your data is private and your files are clean.

Built-In Privacy Tools

Find and Remove Text

Quickly delete personal text entries from your files.

Cover Images with Overlays

Hide image sections that should not be visible.

Delete Metadata

Wipe hidden fields like author, title, and more to stay safe.

Clean Up Metadata Fields

This example shows how to clear metadata from a PPTX file safely.

C#

//  Import your PPTX file
using (Redactor redactor  = new Redactor("source.pptx"))
{
    // Redact Author field
    MetadataSearchRedaction redactionAuthor = 
        new MetadataSearchRedaction(@"[A-Za-z0-9 ]+", "GroupDocs Company")
    {
        Filter = MetadataFilters.Author
    };

    // Redact Title field
    MetadataSearchRedaction redactionTitle = 
        new MetadataSearchRedaction(@"[A-Za-z0-9 ]+", "GroupDocs.Redaction Usage")
    {
        Filter = MetadataFilters.Title
    };

    // Process redaction
    var redactions = new MetadataSearchRedaction[] { redactionAuthor, redactionTitle };
    redactor.Apply(redactions);

    // Export the redacted file
    var saveOptions = new SaveOptions() { AddSuffix = true, RasterizeToPDF = false };
    var outputPath = redactor.Save(saveOptions);
}
dotnet add package GroupDocs.Redaction
click to copy
copied
More examples Documentation

Get to Know GroupDocs.Redaction for .NET

GroupDocs.Redaction is built for C# developers who need to erase data from PPTX files. Clean up text, images, and metadata quickly.
Learn more
About illustration

Ready to get started?

Download GroupDocs.Redaction for free or get a trial license for full access!

Useful resources

Explore documentation, code samples, and community support to enhance your experience.

Clean Metadata in PPTX Files Using .NET

Easily remove background metadata from PPTX files with .NET. Perfect for document safety.

Temporary license tips

1
Sign up with your work email.
Free mail services are not allowed.
2
Use Get a temporary license button on the second step.
 English