Sort Score
Result 10 results
Languages All
Labels All
Results 1,561 - 1,570 of 3,097 for

file editor

(0.23 sec)
  1. Loading of external resources containing by a d...

    This article explains how to manage loading of external resources contained by a document with GroupDocs.Viewer within your .NET applications....Editor Product Solution GroupDocs...following images show the output file with and without external resources...

    docs.groupdocs.com/viewer/net/loading-external-...
  2. Password-protected documents | GroupDocs

    GroupDocs.Parser provides the functionality to open the password-protected documents. The following are the steps to work with password protected documents. Instantiate the LoadOptions object; Set password in LoadOptions(String) constructor; Create Parser object and call any method. The following code sample shows how to process password protected documents. try { String password = "123456"; // Create an instance of Parser class with the password: try (Parser parser = new Parser(Constants.SamplePassword, new LoadOptions(password))) { // Check if text extraction is supported if (!...Editor Product Solution GroupDocs...whether a file is password-protected: // Get a file info FileInfo...

    docs.groupdocs.com/parser/java/password-protect...
  3. Comparing Folders | GroupDocs

    This page describes how to compare two folders and find out which Files/folders were deleted, added or modified....Editor Product Solution GroupDocs...groupdocs . Comparer ( 'sample-files/SourceFolder' , compareOptions...

    docs.groupdocs.com/comparison/nodejs-java/compa...
  4. Load CSV document with options | GroupDocs

    Learn this article and check how to load and convert CSV documents with advanced options using GroupDocs.Conversion for .NET API....Editor Product Solution GroupDocs...check restrictions of Excel file when modifying cell objects...

    docs.groupdocs.com/conversion/net/load-csv-docu...
  5. Document filtering in search result | GroupDocs

    This article gives the knowledge that how the document filters used during the search using Java search API....Editor Product Solution GroupDocs...( "relativity" , options ); File path filters The first supported...

    docs.groupdocs.com/search/java/document-filteri...
  6. Markdown flavor control | GroupDocs

    Target GitHub Flavored Markdown or CommonMark output...Editor Product Solution GroupDocs...business-plan.docx is sample file used in this example. Click...

    docs.groupdocs.com/markdown/python-net/markdown...
  7. Add document to Diagram via OLE | GroupDocs

    This article explains how to add document to Diagram via OLE with GroupDocs.Merger within your .NET applications....Editor Product Solution GroupDocs...Initialise class with embedded file path and page number; Instantiate...

    docs.groupdocs.com/merger/net/add-document-to-d...
  8. Get document info | GroupDocs

    Learn how to get basic document information including File type, page count, and File size using GroupDocs.Parser for .NET. Get document properties in C#....Editor Product Solution GroupDocs...information Console . WriteLine ( $"File Type: {info.FileType}" ); Console...

    docs.groupdocs.com/parser/net/get-document-info/
  9. GroupDocs.Viewer for Java | GroupDocs

    GroupDocs.Viewer for Java allows you to render documents in various formats as HTML, PDF, JPEG, and PNG Files. You do not need to use third-party software to view Files within your Java application....Editor Product Solution GroupDocs...spreadsheets, presentations, PDF files, web pages, email messages,...

    docs.groupdocs.com/viewer/java/
  10. 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 FileType property to obtain File format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Editor Product Solution GroupDocs...and extract some additional file format information. a GIF image...

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