Sort Score
Result 10 results
Languages All
Labels All
Results 301 - 310 of 30,476 for

groupdocs.metadata

(0.16 sec)
  1. Security on GroupDocs Blog | Document Automatio...

    Security on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Security on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers GroupDo......NET & Java Developers GroupDocs.Metadata для .NET 25.10 – Основные...Исследуйте новинки в GroupDocs.Metadata для .NET 25.10. Доступно...

    blog.groupdocs.com/ru/tag/security/index.xml
  2. Update on GroupDocs Blog | Document Automation ...

    Update on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Update on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers GroupDocs.M......NET & Java Developers GroupDocs.Metadata for .NET 25.10 – Ekim...2025 Sürüm Özellikleri GroupDocs.Metadata for .NET 25.10'da...

    blog.groupdocs.com/tr/tag/update/index.xml
  3. Security on GroupDocs Blog | Document Automatio...

    Security on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Security on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers GroupDo......NET & Java Developers GroupDocs.Metadata for .NET 25.10 – Ekim...2025 Sürüm Özellikleri GroupDocs.Metadata for .NET 25.10'da...

    blog.groupdocs.com/tr/tag/security/index.xml
  4. Security on GroupDocs Blog | Document Automatio...

    Security on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Security on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers GroupDo......NET & Java Developers GroupDocs.Metadata für .NET 25.10 – Oktober...Sie, was es Neues in GroupDocs.Metadata für .NET 25.10 gibt....

    blog.groupdocs.com/de/tag/security/index.xml
  5. Categories on GroupDocs Blog | Document Automat...

    Categories on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Categories on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Gro......Editor Releases GroupDocs.Metadata Releases GroupDocs.Annotation...GroupDocs.Total Releases GroupDocs.Metadata Product Family GroupDocs...

    blog.groupdocs.com/zh/categories/index.xml
  6. Load a password-protected document | GroupDocs

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument JavaScript try { var loadOptions = new LoadOptions(); loadOptions.setPassword("123"); const metadata = new Groupdocs.metadata.Metadata("protected.docx", loadOptions); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/nodejs-java/load-a-...
  7. Exporting metadata properties | GroupDocs

    Export metadata properties to an Excel workbook using Groupdocs.metadata for Python via .NET....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/python-net/exportin...
  8. Load a password-protected document | GroupDocs

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument // Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx" try (Metadata metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/load-a-passwor...
  9. Working with metadata in GIF images | GroupDocs

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the getGifImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.gif.GifReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputGif)) { GifRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getGifImageType().getFileFormat()); System.out.println(root.getGifImageType().getVersion()); System.out.println(root.getGifImageType().getByteOrder()); System.out.println(root.getGifImageType().getMimeType()); System.out.println(root.getGifImageType().getExtension()); System.out.println(root.getGifImageType().getWidth()); System.out.println(root.getGifImageType().getHeight()); } Working with XMP Metadata GroupDocs....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Working with metadata in ProjectManagement form...

    Groupdocs.metadata for .NET provides functionality that allows working with MPP files created by different versions of Microsoft Project. Please see the code samples below for more information. Reading built-In metadata properties To access built-in metadata of a ProjectManagement document, please use the DocumentProperties property defined in the DocumentRootPackage class. The following code snippet extracts built-in metadata properties and displays them on the screen. AdvancedUsage.ManagingMetadataForSpecificFormats.Document.ProjectManagement.ProjectManagementReadBuiltInProperties using (Metadata metadata = new Metadata(Constants.InputMpp)) { var root = metadata....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

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