To extract metadata from Microsoft Office PowerPoint presentations getMetadata method is used. This method allows to extract the following metadata:
Name Description title The title of the presentation. subject The subject of the presentation. keywords The keyword of the presentation. comments The comments of the presentation. content-status The content status of the presentation. category The category of the presentation. company The company of the presentation. manager The manager of the presentation....Classification Product Solution Purchase...
Following this guide you will learn how to compare multiple documents with different customisations - style detection, change comparison detalisation level and more....Classification Product Solution Purchase...
Clone the GroupDocs.Comparison for Python via .NET examples repository, install dependencies, and run the bundled examples that accompany this documentation....Classification Product Solution Purchase...
Skip image comparison when diffing PDF documents to speed up the process and avoid noise from embedded graphics, using GroupDocs.Comparison for Python via .NET....Classification Product Solution Purchase...
Learn how to run C# examples which contain creating a watermark, removing watermark, adding watermark to photos, removing watermark from photo and many more examples....Classification Product Solution Purchase...
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.CadPackage property.
The following code snippet reads metadata associated with a CAD file.
AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties
using (Metadata metadata = new Metadata(Constants.InputDxf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // ....Classification Product Solution Purchase...
Choose the metadata source (source document, target document, or custom file-author metadata) when saving the comparison result using GroupDocs.Comparison for Python via .NET....Classification Product Solution Purchase...