Sort Score
Result 10 results
Languages All
Labels All
Results 2,851 - 2,860 of 4,892 for

groupdocs.viewer,

(0.1 sec)
  1. Remove Annotations from RTF using C#

    Learn how to efficiently remove annotations from RTF using C#. This guide includes code demonstrating the process of how to delete annotations in RTF using C#....Learn how to efficiently remove annotations from RTF using C#. This guide includes code demonstrating the process of how to delete annotations in RTF using C#.

    kb.groupdocs.com/redaction/net/remove-annotatio...
  2. Remove Metadata from PPTX using Java

    Easily learn how to remove metadata from PPTX using Java. You'll also get an example code that shows how to clean metadata from PPTX in Java without extra software installation....Easily learn how to remove metadata from PPTX using Java. You'll also get an example code that shows how to clean metadata from PPTX in Java without extra software installation.

    kb.groupdocs.com/redaction/java/remove-metadata...
  3. How to Convert XML to PDF in C#

    Learn the process to convert documents with one of the top library and easily convert XML to PDF in C#. Explore sample code for C# convert XML to PDF capability....Learn the process to convert documents with one of the top library and easily convert XML to PDF in C#. Explore sample code for C# convert XML to PDF capability.

    kb.groupdocs.com/conversion/net/how-to-convert-...
  4. Removing metadata | Documentation

    Not all metadata properties extracted from a file are marked with tags. Some file formats and metadata standards allow adding fully custom properties that can’t be properly tagged by the library since their purpose is not clearly defined in the appropriate format/standard specification. In such cases, you can use the name of the property to locate and remove it. The following example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing to remove metadata properties....Not all metadata properties extracted from a file are marked with tags. Some file formats and metadata standards allow adding fully custom properties that can’t be properly tagged by the library since their purpose is not clearly defined in the appropriate format/standard specification. In such cases, you can use the name of the property to locate and remove it. The following example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing to remove metadata properties.

    docs.groupdocs.com/metadata/python-net/removing...
  5. Verifying Text signatures | Documentation

     This article explains how to provide advanced verification of Text electronic signatures with GroupDocs.Signature API.... This article explains how to provide advanced verification of Text electronic signatures with GroupDocs.Signature API.

    docs.groupdocs.com/signature/java/verify-text-s...
  6. Delete Signatures of the certain type | Documen...

    This article explains how to delete electronic signatures of the certain type with GroupDocs.Signature API....This article explains how to delete electronic signatures of the certain type with GroupDocs.Signature API.

    docs.groupdocs.com/signature/net/delete-signatu...
  7. Search for Text e-signatures | Documentation

    This topic explains how to search for text electronic signatures within the document pages by GroupDocs.Signature API....This topic explains how to search for text electronic signatures within the document pages by GroupDocs.Signature API.

    docs.groupdocs.com/signature/net/search-for-tex...
  8. Generate document preview | Documentation

    This article shows you how to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free online....This article shows you how to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free online.

    docs.groupdocs.com/metadata/net/generate-docume...
  9. How to search signatures with LINQ queries | Do...

     This article explains how to search signatures with LINQ query with GroupDocs.Signature API.... This article explains how to search signatures with LINQ query with GroupDocs.Signature API.

    docs.groupdocs.com/signature/net/search-signatu...
  10. Working with metadata in PNG images | Documenta...

    Reading PNG metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG images. The following are the steps to read the native PNG metadata. Load a PNG image Get the root metadata package Extract the native metadata package using PngRootPackage.PngPackage Read the PNG metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Png.PngReadTextChunks using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); foreach (var chunk in root.PngPackage.TextChunks) { Console.WriteLine(chunk.Keyword); Console.WriteLine(chunk.Text); var compressedChunk = chunk as PngCompressedTextChunk; if (compressedChunk !...Reading PNG metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG images. The following are the steps to read the native PNG metadata. Load a PNG image Get the root metadata package Extract the native metadata package using PngRootPackage.PngPackage Read the PNG metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Png.PngReadTextChunks using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage<PngRootPackage>(); foreach (var chunk in root.PngPackage.TextChunks) { Console.WriteLine(chunk.Keyword); Console.WriteLine(chunk.Text); var compressedChunk = chunk as PngCompressedTextChunk; if (compressedChunk !

    docs.groupdocs.com/metadata/net/working-with-me...