bookmarks in word
C#
2
Posts
2
Posters
0
Views
1
Watching
-
how do we insert or apply bookmarks in a word document using C#.net note: i have office 2000.
Nitin Raj Bidkikar
Try
object nullRef = null; object count = null; object gotoItem = (object)WdGoToItem.wdGoToBookmark; object name = (object)"Sample"; Range rng = doc.GoTo(ref gotoItem, ref nullRef, ref count, ref name);
where doc is your document.
Deja View - the feeling that you've seen this post before.