Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

GroupDocs.Editor for .NET 24.6 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 123.76MB
  • Date Added:
  • 17/6/2024

Description

This ZIP file contains only the GroupDocs.Editor for .NET 24.6 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Editor for .NET without the MSI installer. This ZIP download does not contain the demo projects

File Details

Developers, rejoice! GroupDocs.Editor for .NET version 24.6 (DLLs only) is here. This release streamlines document editing capabilities and incorporates valuable bug fixes.

Programmatic Document Creation

Effortlessly generate new documents in different formats (Word, Excel, PDF, etc.) without needing a callback function using this version of the .NET document editing API. You can also work with simplified programmatic form field interactions. The following code examples highlight how to generate DOCX, XLSX, PPTX, EPUB, and EML without callbacks in C#.

Generate a Word (DOCX) document:

Stream memoryStream = new MemoryStream();

// Create a new WordProcessing document and save it using a callback Action<Stream>.
using (Editor editor = new Editor(WordProcessingFormats.Docx))
{
    // Save new document.
    editor.Save(memoryStream);
}

Source*

Generate an spreadsheet (XLSX) document:

Stream memoryStream = new MemoryStream();

// Create a new Spreadsheet document and save it.
using (Editor editor = new Editor(SpreadsheetFormats.Xlsx))
{
    // Save new document.
    editor.Save(memoryStream);
}

Source*

Create a Presentation (PPTX) document:

Stream memoryStream = new MemoryStream();

// Create a new Presentation document and save it.
using (Editor editor = new Editor(PresentationFormats.Pptx))
{
    // Save new document.
    editor.Save(memoryStream);
}

Source*

Create an Ebook (EPUB) document:

Stream memoryStream = new MemoryStream();

// Create a new Ebook document and save it.
using (Editor editor = new Editor(EBookFormats.Epub))
{
    // Save new document.
    editor.Save(memoryStream);
}

Source*

Create an Email (EML) document:

Stream memoryStream = new MemoryStream();

// Create a new Email document and save it.
using (Editor editor = new Editor(EmailFormats.Eml))
{
    // Save new document.
    editor.Save(memoryStream);
}

Source*

Refined Performance and Security

Leverage updated project dependencies for enhanced compatibility and a more secure development experience with GroupDocs.Editor for .NET 24.6.

Bug Fixes

The issue related to enums inherited from Byte has been fixed in the latest .NET API version, ensuring smoother operations.

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Editor for .NET 24.6 Release Notes.

 English