This article gives the knowledge about the regular expression (RegEx) search queries which are universal and very flexible, but at the same time, in large indexes, their performance becomes extremely low using Java search API....Consulting Blog Knowledge Base New Releases Status Websites aspose.com...
You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods:
import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *
* This is an example of ILogger implementation, tracking count of error messages. *
*/ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....Consulting Blog Knowledge Base New Releases Status Websites aspose.com...
Quickly get started with GroupDocs.Redaction for Python via .NET by creating and running a simple example....Consulting Blog Knowledge Base New Releases Status Websites aspose.com...
In this article, you will learn how to apply watermark to document pages when converting document with GroupDocs.Conversion for Node.js via Java API....Consulting Blog Knowledge Base New Releases Status Websites aspose.com...
In this article, you will learn how to convert note-taking formats to other formats with GroupDocs.Conversion for Node.js via Java....Consulting Blog Knowledge Base New Releases Status Websites aspose.com...
Note In this article, we will use GroupDocs.Assembly to generate a Multicolored Numbered List report in Word Processing Document format. Multicolored Numbered List in Microsoft Word Document Creating a Multicolored Numbered List Practicing the following steps you can create Multicolored Numbered List Template in MS Word 2013.
In your document, write a sentence like “We provide support for the following clients:”. Start numbered list. Go to the “Design” tab and select color to make it colored list....Consulting Blog Knowledge Base New Releases Status Websites aspose.com...
Learn this article and check how to load and convert Email documents with advanced options using GroupDocs.Conversion for Java API....Consulting Blog Knowledge Base New Releases Status Websites aspose.com...
This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package.
Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors
JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iReleases Status Websites aspose.com...
Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header.
The following are the steps to read the header of an FLV file.
Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties
try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Consulting Blog Knowledge Base New Releases Status Websites aspose.com...
The page describes how to load PDF, Word, Excel, PowerPoint documents from Azure Blob storage when using GroupDocs.Annotation for .NET....Consulting Blog Knowledge Base New Releases Status Websites aspose.com...