このトピックには、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
- 応答内のストリームを使用して、生成されたファイルをクラウドからダウンロードします。ドキュメント ディクショナリ
- ダウンロードしたファイル ストリームを 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ファイルを作成する の方法に関する記事を参照してください。