0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PythonでWord文書を管理する:コメントの追加、削除、返信

Last updated at Posted at 2023-10-26

Word文書において、コメントはコラボレーションやフィードバックのための重要なツールです。 アイデアの共有、既存のコメントへの返信、古いフィードバックの削除など、その目的が何であれ、Word文書のコメントの効率的な取り扱いをマスターすることで、文書のワークフローを大幅に向上させることができます。 この記事の目的は、PythonプログラムでSpire.Doc for Pythonを使用してWord文書にコメントを追加、削除、返信する方法を説明することです。


このチュートリアルにはSpire.Doc for Pythonが必要です。Spire.Doc for Pythonは公式ウェブサイトからダウンロードするか、pip経由でインストールすることができます:

pip install Spire.Doc

Pythonを使用してWord文書にコメントを追加する方法

Spire.Doc for Pythonは、Word文書内のコメントを表すCommentクラスを提供します。このクラスのオブジェクトを作成し、特定のテキストに追加することで、そのテキストにコメントを付けることができます。また、コメントの開始マークと終了マークを使用して、コメントに対応するテキストの範囲を制御する必要があります。段落にコメントを追加する詳しい手順は以下の通りです:

  • Documentクラスのオブジェクトを作成し、Document.LoadFromFile() メソッドを使用してWord文書を読み込みます。
  • Document.FindString() メソッドを使用して、コメントするテキストを見つけます。
  • Commentクラスのオブジェクトを作成し、Comment.Body.AddParagraph().Textプロパティでコメント内容を設定し、Comment.Format.Authorプロパティでコメントの作成者を設定します。
  • TextSelection.GetAsOneRange() メソッドでテキストを1つのテキスト範囲として取得し、TextRange.OwnerParagraphプロパティでテキストが属する段落を取得します。
  • 見つかったテキストの後に、Paragraph.ChildObjects.Insert() メソッドを使ってコメントを挿入します。
  • コメントの開始マークと終了マークを作成し、CommentMark.CommentIdプロパティで作成したコメントの開始マークと終了マークに設定します。
  • Paragraph.ChildObjects.Insert() メソッドを使用して、コメントの開始マークと終了マークをそれぞれ作成したテキストの前後に挿入します。
  • Document.SaveToFile() メソッドを使用してドキュメントを保存します。

Python

from spire.doc import *
from spire.doc.common import *

# Document クラスのオブジェクトを作成し、Word ドキュメントを読み込む
doc = Document()
doc.LoadFromFile("サンプル.docx")

# コメントを追加するテキストを検索する
text = doc.FindString("交換手段", True, True)

# コメントオブジェクトを作成し、コメントの内容と作者を設定する
comment = Comment(doc)
comment.Body.AddParagraph().Text = "交換手段には、商品交換、信用取引、資産交換も含まれる。"
comment.Format.Author = "リンダ"

# テキストをテキスト範囲として取得し、その所属段落を取得する
range = text.GetAsOneRange()
paragraph = range.OwnerParagraph

# コメントを段落に追加する
paragraph.ChildObjects.Insert(paragraph.ChildObjects.IndexOf(range) + 1, comment)

# コメント開始マークと終了マークを作成し、作成したコメントの開始マークと終了マークに設定する
commentStart = CommentMark(doc, CommentMarkType.CommentStart)
commentEnd = CommentMark(doc, CommentMarkType.CommentEnd)
commentStart.CommentId = comment.Format.CommentId
commentEnd.CommentId = comment.Format.CommentId

# テキストの前後に作成したコメント開始マークと終了マークを挿入する
paragraph.ChildObjects.Insert(paragraph.ChildObjects.IndexOf(range), commentStart)
paragraph.ChildObjects.Insert(paragraph.ChildObjects.IndexOf(range) + 1, commentEnd)

# ドキュメントを保存する
doc.SaveToFile("output/コメントの追加.docx")
doc.Close()

結果の文書

Python Word文書にコメントを追加

Pythonを使用してWord文書からコメントを削除する方法

Spire.Doc for Pythonには、指定したコメントを削除する Document.Comments.RemoveAt() メソッドと、すべてのコメントを削除する Document.Clear() メソッドがあります。コメントを削除する詳しい手順は以下の通りです:

  • Documentクラスのオブジェクトを作成し、Document.LoadFromFile() メソッドを使用してWordドキュメントをロードします。
  • Document.Comments.RemoveAt() メソッドで特定のコメントを削除するか、Document.Comments.Clear() メソッドですべてのコメントを削除する。
  • Document.SaveToFile() メソッドを使用してドキュメントを保存します。

Python

from spire.doc import *
from spire.doc.common import *

# Document クラスのオブジェクトを作成し、Word ドキュメントを読み込む
doc = Document()
doc.LoadFromFile("サンプル1.docx")

# 1番目のコメントを削除する
#doc.Comments.RemoveAt(0)

# すべてのコメントを削除する
doc.Comments.Clear()

# ドキュメントを保存する
doc.SaveToFile("output/コメントの削除.docx")
doc.Close()

Pythonを使用してWord文書のコメントに返信する方法

Spire.Doc for Pythonでは、Comment.ReplyToComment(Comment) メソッドを使用して、コメントを他のコメントへの返信として設定することで、ユーザーがコメントに返信することができます。詳しい手順は以下の通りです:

  • Documentクラスのオブジェクトを作成し、Document.LoadFromFile() メソッドを使用してWord文書を読み込みます。
  • Document.Comments.get_Item() メソッドを使用してコメントを取得します。
  • コメントを作成し、Comment.Body.AddParagraph().TextプロパティとComment.Format.Authorプロパティでその内容と作者を設定します。
  • Comment.ReplyToComment() メソッドを使用して、作成したコメントを取得したコメントへの返信として設定します。
  • Document.SaveToFile() メソッドを使用してドキュメントを保存します。

Python

from spire.doc import *
from spire.doc.common import *

# Document クラスのオブジェクトを作成し、Word ドキュメントを読み込む
doc = Document()
doc.LoadFromFile("output/テキストへのコメント.docx")

# コメントを取得する
comment = doc.Comments.get_Item(0)

# 返信コメントを作成し、内容と作者を設定する
reply = Comment(doc)
reply.Body.AddParagraph().Text = "記事に関連する内容を追加していく予定です。"
reply.Format.Author = "モリー"

# 作成したコメントを取得したコメントに返信コメントとして設定する
comment.ReplyToComment(reply)

# ドキュメントを保存する
doc.SaveToFile("output/コメントへの返信.docx")
doc.Close()

結果の文書

Python Word文書のコメントに返信

Pythonを使ってWord文書にコメントを追加、削除、返信する方法の紹介です。 Spire.Doc for Pythonの使い方については、Spire.Doc for Pythonチュートリアルをご覧ください。 また、Spire.Docフォーラムでディスカッションに参加することもできます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?