我有用于在 Microsoft Word 文档上打开和编写文本的代码。
private void button1_Click(object sender, EventArgs e)
{
Microsoft.Office.Interop.Word._Application oWord;
object oMissing = Type.Missing;
oWord = new Microsoft.Office.Interop.Word.Application();
oWord.Visible = true;
oWord.Documents.Open("f:\\test.docx");
oWord.Selection.TypeText("Write your text here");
}
我的问题是,如何使用特殊格式(位置、间距、对齐方式等)在 doc 文件中编写文本?