Learn how to extract tables from a specific document page using GroupDocs.Parser for .NET. Extract tables from Excel, Word, PDF pages by page index in C#....WriteLine (); } } } More resources GitHub examples You may easily...
To extract text from EPUB e-books getText and getText(pageIndex) methods is used. These methods allow to extract text from the entire document or a text from the selected page. Raw mode is not supported for EPUB.... readToEnd ()); } } More resources GitHub examples You may easily...
This article shows how to handle search queries if they contain special characters and separator characters.... Search ( query ); More resources GitHub examples You may easily...
This article gives the knowledge of the API methods which can be used to perform operations about Synonym dictionary using Java....( query , options ); More resources GitHub examples You may easily...
Create your first document by generating a simple report from an in-memory .NET object using GroupDocs.Assembly for .NET.... More resources GitHub Examples You may easily...
This article explains how to create encrypted QR-code electronic signature with embedded custom object...pdf" , options ); } More resources GitHub Examples You may easily...
This article explains how to use different image adjustment with electronic signatures on document page....docx" , options ); } More resources GitHub Examples You may easily...
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()); // .... OutputDxf ); } More resources GitHub examples You may easily...
This article explains how to verify digital electronic signatures with GroupDocs.Signature for Python via .NET API...signatures" ) Additional Resources GitHub Examples You may easily...