Browse our Products Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
InstallationThe package is available at nuget.org and it can be installed via package manager console by executing following command:PM> NuGet\Install-Package GroupDocs.editor-Cloud
The package is available at nuget.org and it can be installed via package manager console by executing following command:
PM> NuGet\Install-Package GroupDocs.editor-Cloud
Install-Package GroupDocs.Editor-Cloud
Update-Package GroupDocs.Editor-Cloud
DOCX
// Load the document into editable state var loadOptions = new WordProcessingLoadOptions { FileInfo = new FileInfo { FilePath = "WordProcessing/password-protected.docx", Password = "password" }, OutputPath = "output" }; var loadResult = editApi.Load(new LoadRequest(loadOptions)); // Download and edit the HTML document var stream = fileApi.DownloadFile(new DownloadFileRequest(loadResult.HtmlPath)); var htmlString = new StreamReader(stream, Encoding.UTF8).ReadToEnd(); htmlString = htmlString.Replace("Sample test text", "Hello world"); // Upload the edited HTML back to storage fileApi.UploadFile(new UploadFileRequest(loadResult.HtmlPath, new MemoryStream(Encoding.UTF8.GetBytes(htmlString)))); // Save HTML back to DOCX var saveOptions = new WordProcessingSaveOptions { FileInfo = loadOptions.FileInfo, OutputPath = "output/edited.docx", HtmlPath = loadResult.HtmlPath, ResourcesPath = loadResult.ResourcesPath }; var saveResult = editApi.Save(new SaveRequest(saveOptions));
Document Editing API | .NET Cloud API | GroupDocs.Editor Cloud | REST API | Word Processing Formats | Spreadsheet Formats | Presentation Formats | Text Formats | CSV Files | DOCX Documents | XLSX Documents | PPTX Presentations | Password-Protected Files | Cloud Storage Integration | Document Info Retrieval | File Operations | API Explorer | Multi-Platform Support | SDK Support | Secure API Access
Document Editing API
.NET Cloud API
GroupDocs.Editor Cloud
REST API
Word Processing Formats
Spreadsheet Formats
Presentation Formats
Text Formats
CSV Files
DOCX Documents
XLSX Documents
PPTX Presentations
Password-Protected Files
Cloud Storage Integration
Document Info Retrieval
File Operations
API Explorer
Multi-Platform Support
SDK Support
Secure API Access