Sort Score
Result 10 results
Languages All
Labels All
Results 241 - 250 of 463 for

docx page removal

(0.47 sec)
  1. GroupDocs.Conversion for .NET 26.1 – Latest Upd...

    Explore what’s new in GroupDocs.Conversion for .NET 26.1. Available now on NuGet and GroupDocs website.... Convert a DOCX file to Word FlatOpc 3. Convert...FlatOpc Note: No APIs were removed. Existing code continues to...

    blog.groupdocs.com/conversion/groupdocs-convers...
  2. Working with XMP metadata | GroupDocs

    This article shows how to access XMP metadata in a file of any supported format.... Removing XMP metadata To remove the XMP package...code sample below shows how to remove XMP metadata from a file. advanced_usage...

    docs.groupdocs.com/metadata/nodejs-java/working...
  3. Running in Docker | GroupDocs

    Learn how to run GroupDocs.Total for .NET in Docker containers with complete examples, troubleshooting tips, and best practices for document processing in containerized environments....Docker Leave feedback On this page In this documentation topic...context ├── 📄 business-plan.docx # Sample input document ├──...

    docs.groupdocs.com/total/net/running-in-docker/
  4. Working with metadata in Presentations | GroupDocs

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of presentations such as PPT, PPTX, POTM, POTX, etc. For the full list of supported presentation formats please refer to Supported Document Formats. Detecting the exact type of a presentation The following sample of code will help you to detect the exact type of a loaded presentation and extract some additional file format information. Load a presentation Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage....be an estimated word count, page count, character count, etc...methods that allow updating (or removing) the extracted properties...

    docs.groupdocs.com/metadata/net/working-with-me...
  5. GroupDocs.Merger 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....Furthermore, you can change page orientation. Please see release...further details. Features Change Page OrientationNew method ChangeOrientation...

    blog.groupdocs.com/categories/groupdocs.merger-...
  6. Working with metadata in Presentations | GroupDocs

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of presentations such as PPT, PPTX, POTM, POTX, etc. For the full list of supported presentation formats please refer to Supported document formats. Detecting the exact type of a presentation The following sample of code will help you to detect the exact type of a loaded presentation and extract some additional file format information. Load a presentation Extract the root metadata package Use the getPresentationType method to obtain file format information advanced_usage....be an estimated word count, page count, character count, etc...methods that allow updating (or removing) the extracted properties...

    docs.groupdocs.com/metadata/java/working-with-m...
  7. GroupDocs.Conversion 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....Improvements Implement option for removing embedded files in Pdf Bug...constructors and properties are removed. Moreover, there’s also a security...

    blog.groupdocs.com/categories/groupdocs.convers...
  8. GroupDocs.Search 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....the equivalent of retrieving pages in a book related to a keyword...searching the words in each page of the book. Using GroupDocs...

    blog.groupdocs.com/categories/groupdocs.search-...
  9. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class....be an estimated word count, page count, character count, etc...some basic methods that allow removing the extracted properties....

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the getDocumentProperties method defined in the DocumentRootPackage class....be an estimated word count, page count, character count, etc...some basic methods that allow removing the extracted properties....

    docs.groupdocs.com/metadata/java/working-with-m...