...oder kann jemand behilflich sein beim Übersetzen dieses VBA Codes nach C#?
Code:
Sub UpdateBookmark(BookmarkToUpdate As String, TextToUse As String)
Dim BMRange As Range
Set BMRange = ActiveDocument.Bookmarks(BookmarkToUpdate).Range
BMRange.Text = TextToUse
ActiveDocument.Bookmarks.Add BookmarkToUpdate, BMRange
End Sub
(oder jemand ein C# Forum empfehlen?)