Sort Score
Result 10 results
Languages All
Labels All
Results 731 - 740 of 1,481 for

view document

(0.04 sec)
  1. Working with interpreted values | Documentation

    This article contains a good example of numeric flag or enumeration in Node.js via Java....Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/nodejs-java/working...
  2. Working with DICOM metadata | Documentation

    Reading DICOM metadata properties The GroupDocs.Metadata API supports extracting format-specific information from DICOM images. The following are the steps to read the native DICOM metadata. Load a DICOM image Get the root metadata package Extract the native metadata package using DicomRootPackage.DicomPackage Read the DICOM metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Dicom.DicomReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputDicom)) { var root = metadata.GetRootPackage(); if (root.DicomPackage != null) { Console.WriteLine(root.DicomPackage.BitsAllocated); Console.WriteLine(root.DicomPackage.LengthValue); Console.WriteLine(root.DicomPackage.DicomFound); Console.WriteLine(root.DicomPackage.HeaderOffset); Console.WriteLine(root.DicomPackage.NumberOfFrames); // ....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/net/working-with-di...
  3. Date field in template populated as plain text ...

    Hi, we found that the date field is populated as a plain text in template “Template_GeneratedByGroupDocs.doc”(one attached here) instead of driven by formula. we can View the formula for the date field in template “Tem…...Family dotnet , webforms , document-editing ayyappanprofile October...of driven by formula. we can view the formula for the date field...

    forum.groupdocs.com/t/date-field-in-template-po...
  4. Set metadata properties | Documentation

    The SetProperties method is used to update or add metadata. You can easily add metadata to photos, pdfs or you can update or add data to mp3 files....Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...contains the date/time the document was created OR modified var...

    docs.groupdocs.com/metadata/nodejs-java/set-met...
  5. 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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...metadata for specific formats / Documents / Working with metadata in...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using FlvRootPackage.Header Read the FLV header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Flv.FlvReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputFlv)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.Version); Console.WriteLine(root.Header.HasAudioTags); Console.WriteLine(root.Header.HasVideoTags); Console.WriteLine(root.Header.TypeFlags); } Working with XMP metadata GroupDocs....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/net/getting-known-p...
  8. Assemble Documents and Acquire Online Signature...

    The Web 2.0 era has brought consumers and organizations closer. Consumers are active in community forums, blogs or other information-sharing platforms to discuss their tastes and preferences. Closer relationships with their customers has helped organizations understand buyer’s behavior and devise new products faster. Growing Internet penetration ensures that organizations who share, collaborate and reach out to their customers have a competitive edge. Managing Documents effectively is important for businesses to increase the transaction cycle.... Managing documents effectively is important for...transaction cycle. Every aspect of document management, from collecting...

    blog.groupdocs.com/signature/assemble-documents...
  9. Find metadata properties | Documentation

    This article explains that how 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 .NET solution....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...cases, an image, video or document contains more than one metadata...

    docs.groupdocs.com/metadata/net/find-metadata-p...
  10. Working with metadata in GIF images | Documenta...

    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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

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