Sort Score
Result 10 results
Languages All
Labels All
Results 5,601 - 5,610 of 31,038 for

page

(0.58 sec)
  1. How to Run Examples | Documentation

    This article describes how to run Java Search API code examples.... Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/search/java/how-to-run-examp...
  2. Troubleshooting | Documentation

    This section contains issues that you may face and solutions for them when processing files with GroupDocs.Viewer....8 or higher Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/viewer/java/troubleshooting/
  3. GroupDocs.Comparison for Java 19.10 Release Notes

    GroupDocs.Comparison for Java 19.10 Release Notes – the latest updates and fixes....10 Release Notes This page contains release notes for GroupDocs...when sections moved to the new page Fixed typos in API reference...

    releases.groupdocs.com/comparison/java/release-...
  4. GroupDocs.Watermark for .NET 20.5 Release Notes...

    Major features There are the following improvements in this release: Allow to edit minor shape properties in Visio documents Full List of Issues Covering all Changes in this Release Key Summary Issue Type WATERMARKNET-1264 Footer and header watermark adds line break using .NET Bug WATERMARKNET-772 Allow to edit minor shape properties in Visio documents Improvement WATERMARKNET-1268 Watermarking of Word document uses existing paragraph if available Improvement WATERMARKNET-1269 After removing found watermark in Word document, the empty parent paragraph is removed too Improvement Public API and Backward Incompatible Changes Allow to edit minor shape properties in Visio documents Description This improvement allows to edit the following shape properties in Visio documents:...the setter for the Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/watermark/net/groupdocs-wate...
  5. viktoriussuwandi (Viktorius Suwandi) · GitHub

    viktoriussuwandi has 41 repositories available. Follow their code on GitHub....went wrong, please refresh the page to try again. If the problem...persists, check the GitHub status page or contact support . You can’t...

    github.com/viktoriussuwandi
  6. Set Checkbox Values Dynamically | Documentation

    Note This feature is supported by version 20.3 or greater. Note The code uses some of the objects defined in The Business Layer. You can set checkbox values to either checked or unchecked in your reports dynamically by taking the following steps: Add a checkbox content control to your template at a place where you want it to appear in a result document. By editing content control properties, add a check tag to the title of the checkbox content control using the following syntax.... Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/assembly/net/set-checkbox-va...
  7. The Business Layer | Documentation

    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...CommonUtilities Class Code Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/assembly/net/the-business-la...
  8. GroupDocs.Conversion for Java | Documentation

    GroupDocs.Conversion for Java is an advanced document conversion API developed to convert files of different formats from within Java applications....GroupDocs Products Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/conversion/java/
  9. Load a file of a specific format | Documentation

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat // Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit metadata System.... Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  10. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:... Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

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