Sort Score
Result 10 results
Languages All
Labels All
Results 1 - 10 of 123 for

keywords

(0.05 sec)
  1. Read Metadata from PDF using Java

    Learn how to read metadata from PDF using Java without demanding additional software installation. Delve into a code sample to read metadata of PDF using Java....creation and modification dates, keywords, and other pertinent data...and modification dates, and keywords. This data plays a critical...

    kb.groupdocs.com/metadata/java/read-metadata-fr...
  2. Read Metadata from PDF using C#

    Learn how to read metadata from PDF using C# without requiring extra software installation. Delve into a code sample demonstrating how to read metadata of PDF using C#....creation date, modification date, keywords, and more. Extracting this...date, modification date, and keywords. This information can be crucial...

    kb.groupdocs.com/metadata/net/read-metadata-fro...
  3. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.CadPackage property. The following code snippet reads metadata associated with a CAD file. AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputDxf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // .... Keywords ); Console . WriteLine ( root...Name == "Keywords" , new PropertyValue ( "test keywords" )); root...

    docs.groupdocs.com/metadata/net/working-with-ca...
  4. Faceted search | Documentation

    This article gives the knowledge of the creation of faceted search queries using Java search API....format fields Title Subject Keywords Author Description Language...ApplicationVersion Title Subject Comments Keywords ContentStatus Category Manager...

    docs.groupdocs.com/search/nodejs-java/faceted-s...
  5. Faceted search | Documentation

    This article gives the knowledge of the creation of faceted search queries....format fields Title Subject Keywords Author Description Language...ApplicationVersion Title Subject Comments Keywords ContentStatus Category Manager...

    docs.groupdocs.com/search/net/faceted-search/
  6. Faceted search | Documentation

    This article gives the knowledge of the creation of faceted search queries using Java search API....format fields Title Subject Keywords Author Description Language...ApplicationVersion Title Subject Comments Keywords ContentStatus Category Manager...

    docs.groupdocs.com/search/java/faceted-search/
  7. Working with IPTC IIM metadata | Documentation

    This article shows how to access IPTC metadata in a file of any supported format.... Keywords , "keyword 1" )); root . IptcPackage...IptcApplicationRecor . Keywords , "keyword 2" )); root . IptcPackage...

    docs.groupdocs.com/metadata/net/working-with-ip...
  8. 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.... Keywords ); Console . WriteLine ( root...root . DocumentProperties . Keywords = "metadata, built-in, update"...

    docs.groupdocs.com/metadata/net/working-with-me...
  9. Working with IPTC IIM metadata | Documentation

    This article explains how to access IPTC metadata in a file of any supported format, GroupDocs.Metadata for Java provides the IIptc.getIptcPackage method.... Keywords , "keyword 1" )); root . getIptcPackage...IptcApplicationRecor . Keywords , "keyword 2" )); root . getIptcPackage...

    docs.groupdocs.com/metadata/java/working-with-i...
  10. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method. The following code snippet reads metadata associated with a CAD file. advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....WithNameSpecificatio ( "Keywords" ), new PropertyValue ( "test keywords" )); root...

    docs.groupdocs.com/metadata/java/working-with-c...