Word文書の中央のテキスト
Wordドキュメントを作成するスクリプトを作成していますが、テキストを中央揃えにすることはできません。これが私が使用しているコードの例です。(VBScript) set objword = createobject("word.application") set doc = objword.documents.add set selection = objword.selection selection.Font.name = "arial" selection.Font.size = "20" selection.Font.Bold = true selection.Paragraphs.Alignment = wdAlignParagraphCenter selection.typetext "This is the title that should be centered" selection.typeparagraph doc.saveas("testdoc.doc") objword.Quit set objword = nothing Googleで見つけたいくつかの異なることを試しましたが、機能するものは何も見つかりませんでした。