Sort Score
Result 10 results
Languages All
Labels All
Results 2,671 - 2,680 of 4,688 for

as

(0.18 sec)
  1. GroupDocs Blog

    GroupDocs Blog - GroupDocs Blog | Document Automation Solutions for .NET & Java Developers...GroupDocs Blog - GroupDocs Blog | Document Automation Solutions for .NET & Java Developers

    blog.groupdocs.com/groupdocs.blog/page/93/
  2. About annotation UI and Signature UI - Free Sup...

    is there is any update on this?...is there is any update on this?

    forum.groupdocs.com/t/about-annotation-ui-and-s...
  3. Enabling Inline CSS Styles | GroupDocs

    This article describes how to enable the inline styles option for WordProcessing documents to store CSS styles directly inside the HTML markup using GroupDocs.Editor for Node.js via Java....This article describes how to enable the inline styles option for WordProcessing documents to store CSS styles directly inside the HTML markup using GroupDocs.Editor for Node.js via Java.

    docs.groupdocs.com/editor/nodejs-java/inline-st...
  4. Generating worksheets (tabs) preview for spread...

    This article describes how to generate a preview for any worksheet (tab) for the existing Excel spreadsheet in SVG format...This article describes how to generate a preview for any worksheet (tab) for the existing Excel spreadsheet in SVG format

    docs.groupdocs.com/editor/java/generating-works...
  5. Working with OpenType fonts | GroupDocs

    OpenType is a format for scalable computer fonts. It wAs built on its predecessor TrueType, retaining TrueType’s bAsic structure and adding many intricate data structures for prescribing typographic behavior. Note PleAse find more information on the OpenType format here: https://en.wikipedia.org/wiki/OpenType. Reading OpenType metadata The GroupDocs.Metadata API supports extracting format-specific information from OpenType font files. The following are the steps to read the header of an OpenType file. Load an OpenType font file Get the root metadata package Extract the native metadata package using OpenTypeRootPackage....OpenType is a format for scalable computer fonts. It was built on its predecessor TrueType, retaining TrueType’s basic structure and adding many intricate data structures for prescribing typographic behavior. Note Please find more information on the OpenType format here: https://en.wikipedia.org/wiki/OpenType. Reading OpenType metadata The GroupDocs.Metadata API supports extracting format-specific information from OpenType font files. The following are the steps to read the header of an OpenType file. Load an OpenType font file Get the root metadata package Extract the native metadata package using OpenTypeRootPackage.

    docs.groupdocs.com/metadata/net/working-with-op...
  6. Email messages | GroupDocs

    Learn how to add watermark in Outlook email messages....Learn how to add watermark in Outlook email messages.

    docs.groupdocs.com/watermark/net/email-messages/
  7. Extract text in Raw Mode | GroupDocs

    This article explains that how to extract text in Raw mode....This article explains that how to extract text in Raw mode.

    docs.groupdocs.com/parser/java/extract-text-in-...
  8. Customer Feedback Sentiment Analysis in C# | C#...

    C# Sentiment Analysis Automation. Analyze customer feedback with C# API. Check how positive/negative are the comments about your product....C# Sentiment Analysis Automation. Analyze customer feedback with C# API. Check how positive/negative are the comments about your product.

    blog.groupdocs.com/classification/classify-cust...
  9. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in metadata properties To access built-in metadata of a PDF document, pleAse use the getDocumentProperties method defined in the DocumentRootPackage clAss....Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the getDocumentProperties method defined in the DocumentRootPackage class.

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, pleAse use the DocumentProperties property defined in the DocumentRootPackage clAss....Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage<PdfRootPackage>(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class.

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