Sort Score
Result 10 results
Languages All
Labels All
Results 131 - 140 of 1,004 for

date

(0.05 sec)
  1. Adding metadata | GroupDocs

    This article shows how to add metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Node.js via Java search engine...containing the file last printing date if it's missing // Note that...metadata . PropertyValue ( new Date ())); console . log ( `Affected...

    docs.groupdocs.com/metadata/nodejs-java/adding-...
  2. Extract text from ZIP archive files | GroupDocs

    To extract files from ZIP archives getContainer method is used. This method returns the collection of ContainerItem objects. Zip Entry can contain the following metadata: Name Description Date The time and Date at which the file indicated by the Zip Entry was last modified. crc The 32-bit CRC (Cyclic Redundancy Check) on the contents of the Zip Entry. These metadata refer to a container element itself, not a document. Here are the steps to extract an email text from Zip archives:...metadata: Name Description date The time and date at which the file indicated...

    docs.groupdocs.com/parser/java/extract-text-fro...
  3. Migrating from 2 to 3.0 - Free Support Forum - ...

    Hello, We are using GroupDocs Viewer 2.19 currently and we are trying to upgrade viewer 3.0. But i have some questions. In older version of viewer we can set many parameters like SupportTextSelection,ShowHeader,ShowDow…... Can you give a release date of it? Because i have to plan...viewer? Can you give a release date of it? Because i have to plan...

    forum.groupdocs.com/t/migrating-from-2-to-3-0/2555
  4. Search and Filter Documents in Java

    Quickly gain insights into how to search and filter documents in Java. Discover techniques to filter documents search results in Java for accurate data retrieval....in-depth guide on executing date range searches in Java. For...article on how to perform a date range search using Java . Updated...

    kb.groupdocs.com/search/java/search-and-filter-...
  5. Document filtering during indexing | GroupDocs

    This page contains a description of the use of document filters for indexing, as well as descriptions of all types of filters with examples of their creation....than a certain date, later than a certain date, or outside a certain...certain range of dates. Examples of these filters are given below...

    docs.groupdocs.com/search/nodejs-java/document-...
  6. Categories

    Find Answers by API GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotation Product F......Filter Documents in C# Perform Date Range search using C# Perform...

    kb.groupdocs.com/categories/page/14/
  7. Updating metadata | GroupDocs

    The Example in this article demonstrates that how to upDate metadata properties using a combination of criteria...containing the file last printing date if it's missing // Note that...metadata . PropertyValue ( new Date ())); console . log ( `Affected...

    docs.groupdocs.com/metadata/nodejs-java/updatin...
  8. Extract emails from Outlook Storage | GroupDocs

    Extract emails from Outlook using GroupDocs.Parser for .NET...metadata: Name Description date The time and date at which the Outlook...

    docs.groupdocs.com/parser/net/extract-emails-fr...
  9. Find metadata properties | GroupDocs

    Using the GroupDocs.Metadata for Java you can easily search metadata and extract desired metadata properties from PDF, DOCX, PPTX, XLSX, images, audio, video and many other files of different types in your Java solution....last document editor OR the date/time the document was last modified...all properties that store the date/time the document was last edited...

    docs.groupdocs.com/metadata/java/find-metadata-...
  10. Working with CAD metadata | GroupDocs

    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()); // ...."CreatedDateTime" ), new PropertyValue ( new Date ())); root . getCadPackage ()..."ModifiedDateTime" ), new PropertyValue ( new Date ())); metadata . save ( Constants...

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