Sort Score
Result 10 results
Languages All
Labels All
Results 2,801 - 2,810 of 3,574 for

document security

(0.2 sec)
  1. GroupDocs.Assembly for Java 20.4 Release Notes ...

    Major Features Provided an option to fit an image within textbox bounds while maintaining ratio. Full List of Features Covering all Changes in this Release Key Summary Category ASSEMBLYNET-149  Provide an option to fit an image within textbox bounds while maintaining ratio for Word Processing Documents  Feature  ASSEMBLYNET-150  Provide an option to fit an image within textbox bounds while maintaining ratio for emails with RTF bodies  Feature  ASSEMBLYNET-151  Provide an option to fit an image within textbox bounds while maintaining ratio for Spreadsheet Documents  Feature  ASSEMBLYNET-152  Provide an option to fit an image within textbox bounds while maintaining ratio for Presentation Documents  Feature  Public API and Backward Incompatible Changes  Provided an option to fit an image within textbox bounds while maintaining ratio To keep the size of the textbox and stretch the image within bounds of the textbox preserving the ratio of the image, use the keepRatio switch as follows....Us Contact Customers Legal Security Events Acquisition GroupDocs...ratio for Word Processing documents Feature ASSEMBLYNET-150 Provide...

    docs.groupdocs.com/assembly/java/groupdocs-asse...
  2. Indexing from different sources | Documentation

    GroupDocs.Search allows indexing Documents from various sources...Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Search Product Family /...

    docs.groupdocs.com/search/net/indexing-from-dif...
  3. 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....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Editor Product Family /...

    docs.groupdocs.com/editor/java/working-with-for...
  4. Wildcard search | Documentation

    This article shows the operations of wildcard search which allows you to search for words with unknown letters or ranges of letters....Legal Security Events Acquisition GroupDocs Documentation / GroupDocs...indexFolder ); // Indexing documents from the specified folder...

    docs.groupdocs.com/search/nodejs-java/wildcard-...
  5. Homophone dictionary | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about homophone dictionary....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Search Product Family /...

    docs.groupdocs.com/search/net/homophone-diction...
  6. Synonym dictionary | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about Synonym dictionary using Java....Legal Security Events Acquisition GroupDocs Documentation / GroupDocs...indexFolder , true ); // Indexing documents from the specified folder...

    docs.groupdocs.com/search/nodejs-java/synonym-d...
  7. 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....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Metadata Product Family...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. Working with TORRENT files | Documentation

    In the BitTorrent file distribution system, a torrent file or METAINFO is a computer file that contains metadata about files and folders to be distributed, and usually also a list of the network locations of trackers, which are computers that help participants in the system find each other and form efficient distribution groups called swarms. A torrent file does not contain the content to be distributed; it only contains information about those files, such as their names, sizes, folder structure, and cryptographic hash values for verifying file integrity....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Metadata Product Family...

    docs.groupdocs.com/metadata/net/working-with-to...
  9. Use redaction policies | Documentation

    If you have a corporate sensitive data removal policy as a list of redaction rules, you don’t need to specify them in your code. You can specify an XML Document with a list of pre-configured redactions. Below is an example of redaction policy XML file (code properties mapping is obvious): RedactionPolicy.xml You can use RedactionPolicy....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Redaction Product Family...

    docs.groupdocs.com/redaction/java/use-redaction...
  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()); // ....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Metadata Product Family...

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