Explore what’s new in GroupDocs.Parser for .NET 25.12.1. Available now on NuGet and GroupDocs website.
새로운 GroupDocs.Parser for .NET 25.12.1의 기능을 살펴보세요. 이제 NuGet 및 GroupDocs 웹사이트에서 이용할 수 있습니다....Parser assembly. No API changes are required...
Install GroupDocs.Viewer for Node.js via Java using npm or an offline package. Includes prerequisites, Java setup, verification, and troubleshooting....Assembly Product Solution GroupDocs...
free trial api version for redaction is available to evaluate the API which will be similar as licensed but with few limitations....Assembly Product Solution GroupDocs...
Follow this guide and learn how to convert documents to PDF with height, width, DPI, margins and other customizations using GroupDocs.Conversion for Node.js via Java....Assembly Product Solution GroupDocs...
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); // ....Assembly Product Solution GroupDocs...