Sort Score
Result 10 results
Languages All
Labels All
Results 881 - 890 of 2,029 for

properties

(0.03 sec)
  1. Delete Digital signatures from documents | Docu...

    This article explains how to delete Digital electronic signatures with GroupDocs.Signature API....Instantiate object with desired properties; Call method to obtain list...

    docs.groupdocs.com/signature/java/delete-digita...
  2. Watermarks in Word document | Documentation

    This article explains how to add watermarks in word processing document in Java.... Using properties of You can also set some...

    docs.groupdocs.com/watermark/java/watermarks-in...
  3. Highlighting search results | Documentation

    This article gives knowledge on how to highlight search results in the text of a document.... The class contains properties for setting the following...class is used. The following properties are presented in the class...

    docs.groupdocs.com/search/net/highlighting-sear...
  4. Render Word documents as HTML, PDF, and image f...

    This topic describes how to use the GroupDocs.Viewer Java API to convert Word documents to HTML, PDF, PNG, and JPEG formats....The HtmlViewOptions class properties allow you to control the...The PdfViewOptions class properties allow you to control the...

    docs.groupdocs.com/viewer/java/render-word-docu...
  5. Accept or Reject revisions | Documentation

    Following this guide, you will learn how to apply or discard revisions found during document comparison using built-in Microsoft Word functionality.... Set the property of the object to be changed...( , or ) values. The main properties of the class are as follows:...

    docs.groupdocs.com/comparison/net/accept-or-rej...
  6. Render archives as HTML, PDF, and image files |...

    This topic describes how to use the GroupDocs.Viewer .NET API (C#) to display a list of archive content in HTML, PDF, PNG, and JPEG formats and to extract arbitrary file from archive....public API is an ItemsPerPage property of class, which now is marked...document. There is also a boolean property (flag) in the class — when...

    docs.groupdocs.com/viewer/net/render-archive-fi...
  7. Extract metadata from EPUB using C#

    In this article, we will detail the steps required to extract metadata from EPUB using C#. Also, a sample of the EPUB metadata extraction C# code will be provided....for adding read EPUB file properties C# feature to applications...

    kb.groupdocs.com/parser/net/extract-metadata-fr...
  8. Load options for different document types | Doc...

    This article demonstrates how to load and convert PDF. Word, Excel, PowerPoint documents and Images using GroupDocs.Conversion for Java API....titles, authors, and other properties during the conversion process...

    docs.groupdocs.com/conversion/java/load-options...
  9. Working with formats | Documentation

    This article explains document formats and format families supported by GroupDocs.Editor for Java and how to operate them in Java code....structs, all of them have text properties, which reflect their names...

    docs.groupdocs.com/editor/java/working-with-for...
  10. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method. The following code snippet reads metadata associated with a CAD file. advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....allows updating metadata properties in a DXF drawing. Please...

    docs.groupdocs.com/metadata/java/working-with-c...