Sort Score
Result 10 results
Languages All
Labels All
Results 1,031 - 1,040 of 3,857 for

classification

(0.11 sec)
  1. Business Case of a Shopping Store | Documentation

    Note This business case has been conceived for the demonstration purpose and serves well for a typical shopping store. There may be simpler or complex scenarios in real life businesses. Business Case There are many customers of the shopping store. The store offers multiple products. A customer may place multiple orders. An order may have many products. The data may or may not be stored in a database system. Reporting Requirements A report based on some criteria is to be generated....Classification Product Solution Purchase...

    docs.groupdocs.com/assembly/net/business-case-o...
  2. Convert to HTML with advanced options | Documen...

    Follow this guide and learn how to convert documents to HTML format with fixed layout, zoom and other customizations using GroupDocs.Conversion for Node.js via Java....Classification Product Solution Purchase...

    docs.groupdocs.com/conversion/nodejs-java/conve...
  3. How to Run | Documentation

    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....Classification Product Solution Purchase...

    docs.groupdocs.com/metadata/java/how-to-run/
  4. Save a modified file to a stream | Documentation

    This article shows how to save a file to the specified stream...Classification Product Solution Purchase...

    docs.groupdocs.com/metadata/net/save-a-modified...
  5. How to install Asian Fonts on Ubuntu | Document...

    This article will guide you through the installation of Asian Fonts on Ubuntu....Classification Product Solution Purchase...

    docs.groupdocs.com/viewer/net/how-to-install-as...
  6. Retrieve the document information | Documentation

    Retrieving information about a document with GroupDocs.Viewer for .NET...Classification Product Solution Purchase...

    docs.groupdocs.com/viewer/net/retrieving-docume...
  7. Introducing GroupDocs.Signature for Java | Docu...

    Introduction to GroupDocs.Signature for Java - what is it and why to use...Classification Product Solution Purchase...

    docs.groupdocs.com/signature/java/introducing-g...
  8. Load from Stream | Documentation

    This article shows that how to load file from stream using redaction API...Classification Product Solution Purchase...

    docs.groupdocs.com/redaction/net/load-from-stream/
  9. Extend supported extensions list | Documentation

    This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured....Classification Product Solution Purchase...

    docs.groupdocs.com/redaction/java/extend-suppor...
  10. Save overwriting original file | Documentation

    The following example demonstrates how to save the redacted document, replacing an original file: // Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the document in original format overwriting original file redactor.save(options); } } finally { redactor....Classification Product Solution Purchase...

    docs.groupdocs.com/redaction/java/save-overwrit...