GroupDocs.Editor-Cloud

GroupDocs.Editor Cloud 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 DOCX/DOC, PPTX/PPT, XLSX/XLS, ODT, ODS, ODP, TSV/DSV, TXT and many other document formats with GroupDocs.Editor Cloud API.


Keywords
GroupDocs.Editor, api, azw3, chm, cloud, csv, dif, doc, docker, docm, document, docx, dot, dotm, dotx, dsv, ebook, edit, editor, email, eml, emlx, epub, excel, file, html, json, markdown, mbox, md, mhtml, mobi, msg, odp, ods, odt, online, otp, pdf, pot, potm, potx, powerpoint, pps, ppsm, ppsx, ppt, pptm, pptx, presentation, rest, rtf, sdk, slide, spreadsheet, sxc, tsv, txt, word, workbook, xls, xlsb, xlsm, xlsx, xlt, xltm, xltx, xml, xps
License
Other
Install
Install-Package GroupDocs.Editor-Cloud -Version 23.11.0

Documentation

GroupDocs.Editor Cloud SDK for .NET

This repository contains GroupDocs.Editor Cloud SDK for .NET source code. This SDK allows you to work with GroupDocs.Editor Cloud REST APIs in your .NET applications.

GroupDocs.Editor Cloud allows you to edit documents across wide range of supported document types:

  • Microsoft Word documents - DOC, DOCX, DOCM, DOT, DOTM, DOTX, RTF, FlatOpc, WordML, TXT;
  • Microsoft Excel spreadsheets - XLS, XLSX, XLSM, XLT, XLTX, XLTM, XLSB, SpreadsheetML, CSV, TSV;
  • Microsoft PowerPoint presentations - PPT, PPTX, PPTM, POT, PPS etc.;
  • Open Document formats - ODT, OTT, ODS, ODP, OTP;
  • Markup - HTML, MHTML, XML.

How to use the SDK?

The complete source code is available in this repository folder, you can either directly use it in your project via NuGet package manager. For more details, please visit our documentation website.

Getting Started

using System;
using System.Diagnostics;
using GroupDocs.Editor.Cloud.Sdk.Api;

namespace Example
{
    public class Example
    {
        public void Main()
        {
            //TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
            var appSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
            var appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";

            var api = new InfoApi(appSid, appKey);

            try
            {
                // Get supported file formats
                var response = api.GetSupportedFileFormats();

                foreach (var format in response.Formats)
                {
                    Debug.Print(format.ToString());
                }
            }
            catch (Exception e)
            {
                Debug.Print("Something went wrong: " + e.Message);
            }
        }
    }
}

Licensing

All GroupDocs.Editor Cloud SDKs are licensed under MIT License.

Resources

+Website +Product Home +Documentation +Free Support Forum +Blog