Sort Score
Result 10 results
Languages All
Labels All
Results 961 - 970 of 31,521 for

groupdocs.total

(0.36 sec)
  1. GroupDocs.Search for .NET | GroupDocs

    GroupDocs.Search for .NET is a fascinating document search API. It extracts text and metadata from documents and performs advanced searching and indexing operations on the basis of fuzzy and synonym algorithm...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/search/net/
  2. Basic usage | GroupDocs

    Quick Start section for GroupDocs.Redaction API Perform redactions for your documents easily with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when source document “sample.docx” is stored at a local drive and you want to apply redactions to it....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/redaction/net/basic-usage/
  3. GroupDocs.Redaction for .NET | GroupDocs

    A .NET API for redaction of sensitive and classified information from the documents. You can redact in adobe pdf, redact in excel or in many of different file formats using c#...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/redaction/net/
  4. Load password-protected document | GroupDocs

    This article explains how to load password-protected PDF, Word, Excel, PowerPoint documents when using GroupDocs.Merger for .NET....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/merger/net/load-password-pro...
  5. Add password to PDF with permissions | GroupDocs

    This article explains how to add password for PDF document with permissions using GroupDocs.Merger for .NET....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/merger/python-net/add-passwo...
  6. Remove pages | GroupDocs

    Follow this guide and learn how to remove page from PDF or Word document, delete worksheet from Excel file or remove slides from PowerPoint presentations with GroupDocs.Merger for .NET API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/merger/python-net/remove-pages/
  7. Errors and Exceptions | GroupDocs

    Handle parsing errors using groupdocs.parser.exceptions and add troubleshooting steps for GroupDocs.Parser for Python via .NET....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/parser/python-net/errors-and...
  8. List and print all supported file types | Group...

    This article explains how to list and print file types supported by GroupDocs.Viewer for Java...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/viewer/java/how-to-list-and-...
  9. Classify Raw Text | GroupDocs

    Simple IAB-2 text classification Call Classify method with a text as the first parameter to perform classification. Default taxonomy (IAB-2) and bestClassesCount (1) will be used. var response = classifier.Classify("Medicine is an important part of our lifes"); Console.WriteLine(response.BestClassName, response.BestClassProbability); Raw text classification with Documents taxonomy and 2 best classes to return Taxonomy, bestClassesCount and precisionRecallBalance could also be specified: var response = classifier.Classify("Medicine is an important part of our lifes", 2, Taxonomy....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/classification/net/classify-...
  10. Load from Stream | GroupDocs

    Load from Stream As an alternative to a local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/redaction/java/load-from-str...