本主题涉及使用 NET REST API 在 DOCX 中插入注释的过程。我们将使用 Aspose.Words for .NET Cloud SDK 通过 C# 低代码 API 将注释添加到 Word 文档。您将获得设置开发环境并遵循给定步骤和 C# REST API 代码的所有详细信息。
先决条件
- 创建帐户并获取 API 凭据 在 DOC 文件中插入注释
- 下载 Aspose.Words Cloud SDK for Dotnet to include comments in a Word file
- 使用上述 SDK 设置 C# 解决方案项目以添加 DOCX 注释
使用 NET REST API 将注释插入 Word 文档的步骤
- 设置 API 的客户端 ID 和客户端密钥以在 Word 文件中添加注释
- 使用您的客户帐户凭据创建 WordsAPI 类的对象
- 通过提供注释开始和结束范围来创建 CommentInsert 的对象
- 通过提供文件名,使用 InsertCommentOnlineRequest 实例创建添加评论的请求
- 使用 InsertComment 方法在线 Insert the Comments in the Word document
- 使用response.Documents 字典中的流从云端下载生成的文件
- 将下载的文件流以DOCX文件保存在磁盘上
上述步骤说明了如何使用 NET REST API 将注释插入到 Word 文档中。我们将通过使用 ClientSecret 和 ClientId 初始化 WordsApi 类实例来开始该过程,然后通过设置注释开始和范围的范围来创建 InsertComment 类实例。然后,我们将创建 InsertCommentOnlineRequest 请求并使用 InsertCommentOnline 获取添加了注释的 DOCX 文件流。最后,我们将添加了注释的文件流以 DOCX 文件形式保存在磁盘上。
使用 NET REST API 在 Word 文档中添加注释的代码
using System; | |
using System.IO; | |
using System.Linq; | |
using Aspose.Words.Cloud.Sdk; | |
using Aspose.Words.Cloud.Sdk.Model; | |
using Aspose.Words.Cloud.Sdk.Model.Requests; | |
namespace WordsSample.Words | |
{ | |
public class Comments | |
{ | |
public void InsertComments() | |
{ | |
try | |
{ | |
var config = new Configuration(); | |
config.ClientSecret = "secret"; | |
config.ClientId = "clientID"; | |
string output = "output.docx"; | |
var wordsApi = new WordsApi(config); | |
using var requestDocument = File.OpenRead("Sample.docx"); | |
var requestCommentRangeStart = new PositionInsideNode() | |
{ | |
NodeId = "0.0.0.0", | |
Offset = 0 | |
}; | |
var requestCommentRangeEnd = new PositionInsideNode() | |
{ | |
NodeId = "0.0.0.0", | |
Offset = 0 | |
}; | |
var requestComment = new CommentInsert() | |
{ | |
RangeStart = requestCommentRangeStart, | |
RangeEnd = requestCommentRangeEnd, | |
Initial = "IA", | |
Author = "John Doe", | |
Text = "A new Comment" | |
}; | |
var insertRequest = new InsertCommentOnlineRequest(requestDocument, requestComment, destFileName:output); | |
var task = wordsApi.InsertCommentOnline(insertRequest); | |
task.Wait(); | |
var res = task.Result; | |
if (res.Document.TryGetValue(output, out var stream)) | |
{ | |
stream.Position = 0; | |
using (var fileStream = File.Create(output)) | |
{ | |
stream.Seek(0, SeekOrigin.Begin); | |
stream.CopyTo(fileStream); | |
} | |
} | |
} | |
catch (Exception e) | |
{ | |
Console.WriteLine(e.Message); | |
} | |
} | |
} | |
} |
此示例代码演示了*使用 C# 低代码 API 在 DOCX 中创建注释的过程。 CommentInsert 类公开用于设置注释开始和结束、注释缩写、作者和文本范围的属性。您也可以在文档中添加多个注释。我们将为 requesInsertCommentOnlineRequest 设置的文件名将用于从响应对象中提取相应的文档文件流。
在本主题中,我们学习了使用 NET REST API 在 Word 文档中添加注释。如果您想要创建 Word 文档,请参阅有关如何使用 NET REST API 创建 Word 文件的文章。