Sort Score
Result 10 results
Languages All
Labels All
Results 91 - 100 of 741 for

hyperlink

(0.17 sec)
  1. Shapes in spreadsheet document | GroupDocs

    Inspect, modify, and remove shapes in Excel worksheets using GroupDocs.Watermark for Python via .NET....image , set a hyperlink via shape.hyperlink , and modify its...

    docs.groupdocs.com/watermark/python-net/shapes-...
  2. GroupDocs.Parser for Python 25.12 – Latest Upda...

    Explore what’s new in GroupDocs.Parser for Python 25.12. Available now on NuGet and GroupDocs website.... Hyperlink extraction – Extract hyperlinks (currently...

    blog.groupdocs.com/parser/groupdocs-parser-for-...
  3. Support of Setting Output Page Size when Render...

    We have released version 18.5 of GroupDocs.Viewer for .NET with a couple of new features as well as 12 improvements and bug fixes. The latest version includes the feature of setting output page size when rendering email messages as image and PDF. Furthermore, you can now change the field labels in the header of the email messages. The feature of rendering password protected documents has also been extended for ODT and OTT formats....document is not rendered as the hyperlink The output image is cropped...

    blog.groupdocs.com/viewer/support-of-setting-ou...
  4. Existing objects in word processing document | ...

    Inspect, modify, and remove existing shapes (potential watermarks) in Word documents using GroupDocs.Watermark for Python via .NET....set or clear a hyperlink via shape.hyperlink , and modify its...

    docs.groupdocs.com/watermark/python-net/existin...
  5. Removing found watermarks | GroupDocs

    Find and remove text, image, and Hyperlink watermarks using GroupDocs.Watermark for Python via .NET....394 KB) Remove hyperlink watermarks Find hyperlinks with a particular...entities that are hyperlinks. remove_hyperlink_watermarks.py import...

    docs.groupdocs.com/watermark/python-net/removin...
  6. GroupDocs Blog

    GroupDocs Blog - GroupDocs Blog | Document Automation Solutions for .NET & Java Developers... Hyperlinks are normally used to associate...part of the documents to hyperlinks using the link annotations...

    blog.groupdocs.com/groupdocs.blog/page/27/
  7. GroupDocs.Annotation Product Family

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats.... Hyperlinks are normally used to associate...part of the documents to hyperlinks using the link annotations...

    blog.groupdocs.com/categories/groupdocs.annotat...
  8. Extract Metadata from Excel Spreadsheets in C# ...

    Learn how to extract metadata from Microsoft Excel spreadsheets (.xls, .xlsx) in C# using GroupDocs.Parser for .NET. Step-by-step guide with code example....modified by hyperlink-base Base URL for relative hyperlinks application...

    docs.groupdocs.com/parser/net/extract-metadata-...
  9. Working with CAD metadata | 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.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()); // ....new PropertyValue ( "test hyperlink base" )); root . getCadPackage...

    docs.groupdocs.com/metadata/java/working-with-c...
  10. Working with CAD metadata | 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); // ....new PropertyValue ( "test hyperlink base" )); root . CadPackage...

    docs.groupdocs.com/metadata/net/working-with-ca...