Sort Score
Result 10 results
Languages All
Labels All
Results 2,751 - 2,760 of 24,430 for

feature

(0.07 sec)
  1. Composing signature with texture brush backgrou...

     This article explains how to fill signature background with texture brush...the code above and see the feature in action in our GitHub examples:...Online Apps Along with the full-featured .NET library, we provide simple...

    docs.groupdocs.com/signature/net/composing-sign...
  2. Handle loading of external resources documents ...

    GroupDocs.Parser provides the functionality to handle loading of HTML external resources. Here are the steps to handle loading of HTML external resources. Instantiate the ParserSettings object and pass External Resource Handler; Create Parser object and call GetImages method. The following code sample shows how to handle loading of HTML external resources. // Create an instance of ParserSettings to pass External Resource Handler ParserSettings settings = new ParserSettings(new Handler()); // Create an instance of Parser class to generate spreadsheet page previews try (Parser parser = new Parser(Constants....the code above and see the feature in action in our GitHub examples:...parser App Along with full featured Java library we provide simple...

    docs.groupdocs.com/parser/java/handle-loading-o...
  3. Detect encoding | Documentation

    This article explains that how to detect encoding of a plain text file in java....the code above and see the feature in action in our GitHub examples:...parser App Along with full featured Java library we provide simple...

    docs.groupdocs.com/parser/java/detect-encoding/
  4. Password-protected documents | Documentation

    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 (!...the code above and see the feature in action in our GitHub examples:...parser App Along with full featured Java library we provide simple...

    docs.groupdocs.com/parser/java/password-protect...
  5. Advanced search for Text signatures | Documenta...

    This article explains how to make advanced search for Text electronic signatures with GroupDocs.Signature API....the code above and see the feature in action in our GitHub examples:...Online Apps Along with the full-featured .NET library, we provide simple...

    docs.groupdocs.com/signature/net/advanced-searc...
  6. Handling MPEG audio metadata | Documentation

    This article explains how the The GroupDocs.Metadata API allows reading some common MPEG audio properties from MP3 files....the code above and see the feature in action in our GitHub examples:...management App Along with full featured .NET library we provide simple...

    docs.groupdocs.com/metadata/net/handling-mpeg-a...
  7. Implement custom encryption with Metadata signa...

    This article explains how to implement custom encryption for Metadata electronic signatures.... This feature is implemented over object...the code above and see the feature in action in our GitHub examples:...

    docs.groupdocs.com/signature/java/implement-cus...
  8. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class....PDF documents The inspection feature that is introduced in this...the code above and see the feature in action in our GitHub examples:...

    docs.groupdocs.com/metadata/net/working-with-me...
  9. Add watermarks to spreadsheet documents | Docum...

    GroupDocs.Watermark provides an easy way to add watermark to the worksheets of any Excel document....The API also provides the feature to set some additional options...watermark will be drawn. This feature allows you to mimic watermark...

    docs.groupdocs.com/watermark/net/add-watermarks...
  10. Add watermarks to spreadsheet documents | Docum...

    Adding watermark to a particular worksheet GroupDocs.Watermark provides an easy way to add watermark to the worksheets of any Excel document. Adding watermark to a particular Excel worksheet using GroupDocs.Watermark consists of following steps. Load the document Create and initialize watermark object Set watermark properties Create SpreadsheetWatermarkShapeOptions and call setWorksheetIndex() Add watermark to the worksheet Save the document Following code shows how to add watermark to a particular worksheet....The API also provides the feature to set some additional options...watermark will be drawn. This feature allows you to mimic watermark...

    docs.groupdocs.com/watermark/java/add-watermark...