将文本插入现有Word

时间:2016-06-30 13:02:11

标签: c# visual-studio-2010 ms-word

我需要在已经打开的Word文档中添加文本,使用VB中的一些等效的GetObject(,“Word.Application”)。但我不能使用Microsoft.Office.Interop.Word,因为我希望它与所有版本的Word兼容。

修改 它应该与以下VB代码相同:

    Dim word As Object
    Dim text As String

    word = GetObject(, "Word.Application")
    text = TextBox1.Text
    word.Selection.Font.Bold = True

    word.Selection.TypeText(text)

    word = Nothing

有什么想法吗?

0 个答案:

没有答案