Sort Score
Result 10 results
Languages All
Labels All
Results 3,341 - 3,350 of 6,335 for

informations

(2.13 sec)
  1. Optimize a PDF file for a browser | GroupDocs

    This topic describes how to optimize PDF file using the GroupDocs.Viewer .NET API (C#) for web browser or to reduce size....Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  2. The Business Layer | GroupDocs

    Common Utilities Class Document Directories Applying Product License Metered Licensing Data Layer Class Custom Objects Populate Data (Getting Customers Details) Getting Order Details Getting Product Details Getting Single Customer Details Database Entities Getting Customer Details From Database Getting Order Details From Database Getting Product Details From Database Getting Single Customer Details From Database DataSet Source Getting Customer, Order Details From DataSet Getting Product Details From DataSet Getting Single Customer Details From DataSet XML DataSource Getting Complete Details From XML Files Getting Single Customer Details From XML DataSource JOSN DataSource Getting Customer Data From JSON File Getting Customer And Order Data From JSON File Getting Product Data From JSON File Getting Single Customer Data From JSON File Use Spreadsheets as Data Sources Use Tables of Word Processing Documents as Data Sources Use Tables of Presentation Documents as Data Sources Complete DataLayer Class Code Complete DynamicEntity Class Code Complete CommonUtilities Class Code...Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/assembly/net/the-business-la...
  3. GroupDocs.Comparison for Node.js via Java | Gro...

    GroupDocs.Compairson for Java developer documentation. Learn how to diff docx, pptx, and pdf files using Java....Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/comparison/nodejs-java/
  4. GroupDocs.Conversion for Node.js via Java | Gro...

    GroupDocs.Conversion for Node.js via Java is an advanced document conversion API developed to convert files of different formats from within JavaScript applications....Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/conversion/nodejs-java/
  5. Add text watermarks | GroupDocs

    Add text watermarks to rendered documents using GroupDocs.Viewer in your Python applications....Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/viewer/python-net/add-text-w...
  6. Save overwriting original file | GroupDocs

    This article demonstrates that how to save the redacted document, replacing an original file...Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/redaction/net/save-overwriti...
  7. Update document password | GroupDocs

    This article explains how to update password for PDF, Word, Excel, PowerPoint documents by using GroupDocs.Merger for .NET....Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/merger/net/update-document-p...
  8. How to Run | GroupDocs

    Download from GitHub The complete examples package of GroupDocs.Metadata is hosted on Github. You can either download the ZIP file from here or clone the repository of Github using your favourite Github client. In case you download the ZIP file, extract the folders on your local disk. The extracted files and folders will look like the following image: Open IntelliJ Idea and import the project to get started with it....Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/metadata/java/how-to-run-exa...
  9. Load a password-protected document | GroupDocs

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument // Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx" try (Metadata metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/metadata/java/load-a-passwor...
  10. Get supported file formats | GroupDocs

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....Purchase Buy Now Pricing Information Free Trials Temporary License...

    docs.groupdocs.com/metadata/java/get-supported-...