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/94ac5ecaa9ec7ce6112bd94cf914e46c to your computer and use it in GitHub Desktop.
Save GroupDocsGists/94ac5ecaa9ec7ce6112bd94cf914e46c 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 (DiagramDocument doc = Document.Load<DiagramDocument>(Utilities.MapSourceFilePath(FilePath)))
{
foreach (DiagramPage page in doc.Pages)
{
for (var i = page.Shapes.Count - 1; i >= 0; i--)
{
foreach (var fragment in page.Shapes[i].FormattedTextFragments)
{
if (fragment.ForegroundColor == Color.Red && fragment.Font.FamilyName == "Arial")
{
page.Shapes.RemoveAt(i);
break;
}
}
}
}
doc.Save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment