本文介绍如何使用 NET REST API 在 Word 中插入脚注。您将学习使用 Aspose.Words for .NET Cloud SDK 通过 C# Low Code API 添加 Word 脚注。我们将讨论在将脚注添加到文档之前可以设置的各种属性。
先决条件
- 创建账户并获取 API 凭证
- 下载 Aspose.Words Cloud SDK for Dotnet to add a footnote in a Word file
- 使用上述 SDK 设置 C# 解决方案项目以创建尾注
使用 C# REST API 在 Word 中添加脚注的步骤
- 通过提供客户端 ID 和密钥来实例化 WordsApi 对象以插入尾注
- 读取输入的 Word 文件并将其存储在文件流中
- 通过设置各种属性来创建 FootnoteInsert 对象
- 通过设置请求、FootnoteInsert 和目标文件名来创建 InsertFootnoteOnlineRequest 方法
- 调用 InsertFootnoteOnline 方法在源 Word 文件中插入脚注
- 从结果中获取输出流并将其保存到磁盘
上述步骤描述了如何使用 C# REST API 在 Word 中创建脚注。通过将源 Word 文件加载到 FileStream 对象并使用 FootnoteInsert 类创建脚注来开始该过程。使用此脚注创建 InsertFootnoteOnlineRequest,您最终可以使用该请求使用 InsertFootnoteOnline 方法在 Word 文件中创建脚注。
使用 NET REST API 在 Word 中创建脚注的代码
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using Aspose.Words.Cloud.Sdk; | |
using Aspose.Words.Cloud.Sdk.Model; | |
using Aspose.Words.Cloud.Sdk.Model.Requests; | |
namespace WordsSample.Words | |
{ | |
public class WordFileOperations | |
{ | |
public void InsertFootNote() | |
{ | |
var wordsApi = new WordsApi("Client ID", "Client Secret"); | |
string output = "FileWithFootnote.doc"; | |
using var requestDocument = File.OpenRead("Sample.doc"); | |
var requestFootnoteDto = new FootnoteInsert() | |
{ | |
FootnoteType = FootnoteInsert.FootnoteTypeEnum.Endnote, | |
Text = "test endnote 1" | |
}; | |
var insertRequest = new InsertFootnoteOnlineRequest(requestDocument, requestFootnoteDto, | |
destFileName:output); | |
var task = wordsApi.InsertFootnoteOnline(insertRequest); | |
task.Wait(); | |
var result = task.Result; | |
if (result.Document.TryGetValue(output, out var stream)) | |
{ | |
stream.Position = 0; | |
using (var fileStream = File.Create(output)) | |
{ | |
stream.Seek(0, SeekOrigin.Begin); | |
stream.CopyTo(fileStream); | |
} | |
} | |
} | |
} | |
} |
此示例代码展示了如何使用 C# REST API 在 Word 中添加脚注。FootnoteInsert 类包含各种属性,例如可以设置为链接到范围起始节点和引用标记的 Position。调用的响应包含 Document.TryGetValue() 方法,该方法将生成的 Word 文件返回到流对象中,以便保存在磁盘或数据库中。
在本主题中,我们了解了在 Word 文档中添加脚注的过程。如果您要替换 Word 文件中的文本,请参阅以下文章:使用 NET REST API 替换 Word 中的单词。