GroupDocs.Editor
20.12.0
GroupDocs.Editor for .NET is a powerful and lightweight library which allows you to edit most popular document formats using 3rd party front-end WYSIWYG editors without any additional applications. No Open Office or MS Office is required to edit a word or spreadsheet document.
Edit DOC, XLS, PPT, ODT and many other document formats with GroupDocs.Editor for .NET API.
Features:
* Translate document to HTML/CSS DOM compatible with most of HTML WYSIWYG editors;
* Save edited HTML/CSS to source document format;
* Export edited document to PDF format;
* Additional options for processing password protected documents, extract document fonts, export document language information (useful for spell-checkers), set document encoding etc.
Supported document formats:
* Microsoft Word documents - DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, FlatOpc, WordML, TXT;
* Microsoft Excel spreadsheets - XLS, XLSX, XLSM, XLT, XLTX, XLTM, XLSB, SpreadsheetML, CSV, TSV, DSV (arbitrary delimiter);
* Microsoft PowerPoint presentations - PPT, PPTX, PPTM, PPS, PPSX, PPSM, POT, POTX, POTM;
* Open Document formats - ODT, OTT, ODS, ODP, OTP;
* Markup - HTML, MHTML, XML.
For more details on the GroupDocs.Editor for .NET API, please visit product website at:
https://products.groupdocs.com/editor/net
Note: GroupDocs.Editor for .NET will run in evaluation mode. In order to test full features of the product, please request a free 30-day temporary license.
See the version list below for details.
Install-Package GroupDocs.Editor -Version 20.12.0
dotnet add package GroupDocs.Editor --version 20.12.0
<PackageReference Include="GroupDocs.Editor" Version="20.12.0" />
paket add GroupDocs.Editor --version 20.12.0
#r "nuget: GroupDocs.Editor, 20.12.0"
Document Editor .NET API
It is a .NET API that enhances your apps to perform document, spreadsheets, DSV & XML files editing operations for a wide range of file formats.
Document Editor Processing Features
- Edit word processing documents in a flow or paged mode.
- Fetch language information for multi-lingual document editing.
- Extract font information to provide consistent editing and appearance behavior.
- Edit multi-tabbed spreadsheets.
- Supports DSV (Delimiter-Separated Values) documents.
- Specify separator, flexible numeric, and data conversion for CSV & TSV files.
- Availability of memory usage optimization for large CSV & TSV files.
- Fix incorrect XML document structure.
- Recognize URIs and email addresses in XML files.
- Extract basic information about the edited document.
- Set character encoding of the input text document.
- Grab document metadata information.
- Fetch whole HTML document or BODY content.
- Get an HTML document along with all its resources (stylesheets, images).
- Open any supported format file in HTML format and save it to disk.
- Fetch HTML markup from DB or remote storage.
New Features & Enhancements 
- Full support of Open Type fonts (
OTF
). - Added the support for the
BASE
HTML element. - Added support for the following Definition based elements:
DL
(Definition List)DT
(Definition Term)DD
(Definition Details)
Please visit GroupDocs.Editor for .NET 20.12 Release Notes for the detailed notes.
Editable File Formats
Word Processing: DOC, DOCX, DOCM, DOT, DOTM, DOTX, FlatOPC, ODT, OTT, RTF, WordML
Spreadsheet: XLS, XLT, XLSX, XLSM, XLTX, XLTM, XLSB, XLAM, SXC, SpreadsheetML, ODS, FODS, DIF, DSV, CSV, TSV
Presentation: PPT, PPTX, PPTM, PPS, PPSX, PPSM, POT, POTX, ODP, OTP
Other: TXT, HTML, XML, MOBI
Auto-detect File Formats
Word Processing: DOC, DOCX, DOCM, DOT, DOTM, DOTX, ODT, OTT, RTF
Spreadsheet: XLS, XLT, XLSX, XLSM, XLTX, XLTM, XLSB, XLAM, SXC, SpreadsheetML, ODS, FODS, DIF
Presentation: PPT, PPTX, PPTM, PPS, PPSX, PPSM, POT, POTX, ODP, OTP
Ebook: MOBI
Platform Independence
GroupDocs.Editor for .NET does not require any external software or third party tool to be installed. GroupDocs.Editor for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed. The other details are as follows:
Microsoft Windows: Microsoft Windows Desktop (x86, x64) (XP & up), Microsoft Windows Server (x86, x64) (2000 & up), Windows Azure
Mac OS: Mac OS X
Linux: Linux (Ubuntu, OpenSUSE, CentOS, and others)
Development Environments: Microsoft Visual Studio (2010 & up), Xamarin.Android, Xamarin.IOS, Xamarin.Mac, MonoDevelop 2.4 and later.
Supported Frameworks: GroupDocs.Conversion for .NET supports .NET and Mono frameworks.
Getting Started with GroupDocs.Editor for .NET
Are you ready to give GroupDocs.Editor for .NET a try? Simply execute Install-Package GroupDocs.Editor
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Editor assembly in your project. If you already have GroupDocs.Editor for .Net and want to upgrade it, please execute Update-Package GroupDocs.Editor
to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Load, Edit & Save Multi-tab Spreadsheet via C# Code
//1. Get a path to the input file (or stream with file content).
//In this case it is sample XLSX (OOXML) with two tabs.
string inputFilePath = Constants.SAMPLE_XLSX;
//2. Load it into Editor instance from stream
using (FileStream inputStream = File.OpenRead(inputFilePath))
{
using (Editor editor = new Editor(delegate { return inputStream;}, delegate { return new SpreadsheetLoadOptions();}))
{
//3. Let's create an intermediate EditableDocument from 1st tab
SpreadsheetEditOptions editOptions1 = new SpreadsheetEditOptions();
editOptions1.WorksheetIndex = 0;//index is 0-based
EditableDocument firstTabBeforeEdit = editor.Edit(editOptions1);
//4. Let's create an intermediate EditableDocument from 2nd tab
SpreadsheetEditOptions editOptions2 = new SpreadsheetEditOptions();
editOptions2.WorksheetIndex = 1;//index is 0-based
EditableDocument secondTabBeforeEdit = editor.Edit(editOptions2);
//5. Save first tab from EditableDocument #1 to separate document
SpreadsheetSaveOptions saveOptions1 = new SpreadsheetSaveOptions(SpreadsheetFormats.Xlsm);
string outputFilename1 = Path.GetFileNameWithoutExtension(inputFilePath) + "_tab1.xlsm";
string outputPath1 = Path.Combine(Constants.GetOutputDirectoryPath(), outputFilename1);
editor.Save(firstTabBeforeEdit, outputPath1, saveOptions1);
//6. Save the second tab from EditableDocument #2 to separate document
SpreadsheetSaveOptions saveOptions2 = new SpreadsheetSaveOptions(SpreadsheetFormats.Xlsb);
string outputFilename2 = Path.GetFileNameWithoutExtension(inputFilePath) + "_tab2.xlsb";
string outputPath2 = Path.Combine(Constants.GetOutputDirectoryPath(), outputFilename2);
editor.Save(secondTabBeforeEdit, outputPath2, saveOptions2);
//7. Dispose both EditableDocument instances
firstTabBeforeEdit.Dispose();
secondTabBeforeEdit.Dispose();
}
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Document Editor .NET API
It is a .NET API that enhances your apps to perform document, spreadsheets, DSV & XML files editing operations for a wide range of file formats.
Document Editor Processing Features
- Edit word processing documents in a flow or paged mode.
- Fetch language information for multi-lingual document editing.
- Extract font information to provide consistent editing and appearance behavior.
- Edit multi-tabbed spreadsheets.
- Supports DSV (Delimiter-Separated Values) documents.
- Specify separator, flexible numeric, and data conversion for CSV & TSV files.
- Availability of memory usage optimization for large CSV & TSV files.
- Fix incorrect XML document structure.
- Recognize URIs and email addresses in XML files.
- Extract basic information about the edited document.
- Set character encoding of the input text document.
- Grab document metadata information.
- Fetch whole HTML document or BODY content.
- Get an HTML document along with all its resources (stylesheets, images).
- Open any supported format file in HTML format and save it to disk.
- Fetch HTML markup from DB or remote storage.
New Features & Enhancements 
- Full support of Open Type fonts (
OTF
). - Added the support for the
BASE
HTML element. - Added support for the following Definition based elements:
DL
(Definition List)DT
(Definition Term)DD
(Definition Details)
Please visit GroupDocs.Editor for .NET 20.12 Release Notes for the detailed notes.
Editable File Formats
Word Processing: DOC, DOCX, DOCM, DOT, DOTM, DOTX, FlatOPC, ODT, OTT, RTF, WordML
Spreadsheet: XLS, XLT, XLSX, XLSM, XLTX, XLTM, XLSB, XLAM, SXC, SpreadsheetML, ODS, FODS, DIF, DSV, CSV, TSV
Presentation: PPT, PPTX, PPTM, PPS, PPSX, PPSM, POT, POTX, ODP, OTP
Other: TXT, HTML, XML, MOBI
Auto-detect File Formats
Word Processing: DOC, DOCX, DOCM, DOT, DOTM, DOTX, ODT, OTT, RTF
Spreadsheet: XLS, XLT, XLSX, XLSM, XLTX, XLTM, XLSB, XLAM, SXC, SpreadsheetML, ODS, FODS, DIF
Presentation: PPT, PPTX, PPTM, PPS, PPSX, PPSM, POT, POTX, ODP, OTP
Ebook: MOBI
Platform Independence
GroupDocs.Editor for .NET does not require any external software or third party tool to be installed. GroupDocs.Editor for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed. The other details are as follows:
Microsoft Windows: Microsoft Windows Desktop (x86, x64) (XP & up), Microsoft Windows Server (x86, x64) (2000 & up), Windows Azure
Mac OS: Mac OS X
Linux: Linux (Ubuntu, OpenSUSE, CentOS, and others)
Development Environments: Microsoft Visual Studio (2010 & up), Xamarin.Android, Xamarin.IOS, Xamarin.Mac, MonoDevelop 2.4 and later.
Supported Frameworks: GroupDocs.Conversion for .NET supports .NET and Mono frameworks.
Getting Started with GroupDocs.Editor for .NET
Are you ready to give GroupDocs.Editor for .NET a try? Simply execute Install-Package GroupDocs.Editor
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Editor assembly in your project. If you already have GroupDocs.Editor for .Net and want to upgrade it, please execute Update-Package GroupDocs.Editor
to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Load, Edit & Save Multi-tab Spreadsheet via C# Code
//1. Get a path to the input file (or stream with file content).
//In this case it is sample XLSX (OOXML) with two tabs.
string inputFilePath = Constants.SAMPLE_XLSX;
//2. Load it into Editor instance from stream
using (FileStream inputStream = File.OpenRead(inputFilePath))
{
using (Editor editor = new Editor(delegate { return inputStream;}, delegate { return new SpreadsheetLoadOptions();}))
{
//3. Let's create an intermediate EditableDocument from 1st tab
SpreadsheetEditOptions editOptions1 = new SpreadsheetEditOptions();
editOptions1.WorksheetIndex = 0;//index is 0-based
EditableDocument firstTabBeforeEdit = editor.Edit(editOptions1);
//4. Let's create an intermediate EditableDocument from 2nd tab
SpreadsheetEditOptions editOptions2 = new SpreadsheetEditOptions();
editOptions2.WorksheetIndex = 1;//index is 0-based
EditableDocument secondTabBeforeEdit = editor.Edit(editOptions2);
//5. Save first tab from EditableDocument #1 to separate document
SpreadsheetSaveOptions saveOptions1 = new SpreadsheetSaveOptions(SpreadsheetFormats.Xlsm);
string outputFilename1 = Path.GetFileNameWithoutExtension(inputFilePath) + "_tab1.xlsm";
string outputPath1 = Path.Combine(Constants.GetOutputDirectoryPath(), outputFilename1);
editor.Save(firstTabBeforeEdit, outputPath1, saveOptions1);
//6. Save the second tab from EditableDocument #2 to separate document
SpreadsheetSaveOptions saveOptions2 = new SpreadsheetSaveOptions(SpreadsheetFormats.Xlsb);
string outputFilename2 = Path.GetFileNameWithoutExtension(inputFilePath) + "_tab2.xlsb";
string outputPath2 = Path.Combine(Constants.GetOutputDirectoryPath(), outputFilename2);
editor.Save(secondTabBeforeEdit, outputPath2, saveOptions2);
//7. Dispose both EditableDocument instances
firstTabBeforeEdit.Dispose();
secondTabBeforeEdit.Dispose();
}
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Release Notes
https://docs.groupdocs.com/editor/net/groupdocs-editor-for-net-20-12-release-notes/
Dependencies
-
.NETFramework 2.0
- No dependencies.
-
.NETStandard 2.0
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- Microsoft.Win32.Registry (>= 4.7.0)
- Mono.Posix.NETStandard (>= 1.0.0)
- Portable.BouncyCastle (>= 1.8.5.2)
- SkiaSharp (>= 2.80.1)
- System.Diagnostics.PerformanceCounter (>= 4.5.0)
- System.Drawing.Common (>= 4.7.0)
- System.Reflection.Emit (>= 4.3.0)
- System.Reflection.Emit.ILGeneration (>= 4.3.0)
- System.Security.Permissions (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 4.7.0)
Used By
NuGet packages (2)
Showing the top 2 NuGet packages that depend on GroupDocs.Editor:
Package | Downloads |
---|---|
GroupDocs.Total
GroupDocs.Total for .NET is a compilation of every .NET API offered by GroupDocs. We compile it on a daily basis to ensure that it contains the most up to date versions of each of our .NET document manipulation APIs.
With GroupDocs.Total for .NET developers can use all our APIs with a single license. However, you can order any individual API as well. The APIs we offer include:
GroupDocs.Viewer
GroupDocs.Annotation
GroupDocs.Conversion
GroupDocs.Comparison
GroupDocs.Signature
GroupDocs.Assembly
GroupDocs.Metadata
GroupDocs.Search
GroupDocs.Parser
GroupDocs.Watermark
GroupDocs.Editor
GroupDocs.Merger
GroupDocs.Redaction
GroupDocs.Classification
GroupDocs.Total for .NET Documentation
https://docs.groupdocs.com/display/gdtotalproductfamily/GroupDocs.Total+for+.NET
Free support for GroupDocs.Total for .NET is provided on our support forum:
https://forum.groupdocs.com/
|
|
Conholdate.Total
Conholdate.Total for .NET is a complete package to work with a large number of file formats from Microsoft Word, Excel, PowerPoint, Outlook, Project, Visio, Adobe Acrobat, Illustrator, Photoshop, AutoCAD, OpenOffice and many more.
Conholdate.Total for .NET allows you to use any API released under Aspose and GroupDocs for .NET in order to create, convert, read, edit, update and print popular document formats. Moreover, you may view, annotate, watermark, assemble, classify, search, redact, parse, merge and compare documents without needing to install the native applications.
Conholdate.Total for .NET also includes specialized APIs to read and create barcodes, extract text from images using OCR as well as extract human marked data from questioners, surveys, quizzes, MCQ papers and feedback forms.
|
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
21.1.1 | 75 | 1/31/2021 |
21.1.0 | 41 | 1/31/2021 |
20.12.0 | 215 | 12/20/2020 |
20.11.0 | 61 | 11/30/2020 |
20.10.0 | 379 | 10/30/2020 |
20.9.0 | 237 | 10/1/2020 |
20.8.0 | 642 | 8/31/2020 |
20.7.0 | 274 | 7/31/2020 |
20.6.0 | 425 | 7/1/2020 |
20.5.0 | 914 | 5/29/2020 |
20.4.0 | 283 | 4/30/2020 |
20.3.0 | 305 | 3/31/2020 |
20.2.0 | 804 | 2/27/2020 |
20.1.0 | 215 | 2/3/2020 |
19.12.0 | 357 | 12/30/2019 |
19.11.0 | 313 | 11/29/2019 |
19.10.2 | 239 | 11/6/2019 |
19.10.1 | 205 | 10/29/2019 |
19.10.0 | 180 | 10/28/2019 |
19.9.0 | 240 | 9/10/2019 |
19.5.0 | 1,508 | 6/10/2019 |
19.4.0 | 274 | 4/25/2019 |
19.3.0 | 283 | 3/7/2019 |
18.12.0 | 368 | 12/28/2018 |
18.9.0 | 414 | 9/7/2018 |
18.6.0 | 526 | 6/14/2018 |
17.9.0 | 654 | 9/19/2017 |