We are excited to announce the release of GroupDocs.Editor for .NET version 24.6 (MSI)! This update incorporates valuable improvements for a well-organized document editing experience within your .NET applications.
Simplified Document Creation
Create new documents in various formats (Word, Excel, PDF, etc.) without requiring a callback function using the latest .NET document editing API release. You can now simplify programmatic interaction with form fields. The following code examples highlight how to generate Word, Excel, PowerPoint documents, ebooks, and emails 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*
Fine-Tuned Compatibility and Security
We have updated project dependencies in GroupDocs.Editor for .NET 24.6 to ensure compatibility with the latest libraries and boost performance and security.
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.