Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/a34553e03a8d2a6b6c1710fdd9348352 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/a34553e03a8d2a6b6c1710fdd9348352 to your computer and use it in GitHub Desktop.
' For complete examples and data files, please go to https://github.com/groupdocs-watermark/GroupDocs.Watermark-for-.NET
Using doc As SlidesDocument = Document.Load(Of SlidesDocument)(Utilities.MapSourceFilePath(FilePath))
For Each slide As SlidesSlide In doc.Slides
For i As Object = slide.Shapes.Count - 1 To 0 Step -1
For Each fragment As Object In slide.Shapes(i).FormattedTextFragments
If fragment.ForegroundColor = Color.Red AndAlso fragment.Font.FamilyName = "Arial" Then
slide.Shapes.RemoveAt(i)
Exit For
End If
Next
Next
Next
doc.Save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment