Operating MS Word {DescToolsAddIns}R Documentation

Operating MS Word

Description

Controlling MS Word with RStudio has many convenient advantages. We can quickly create some reports on the fly and also use bookmarks to create dynamically updatable report chunks such as tables or graphics. Here we implement a set of functions to handle bookmarks in MS Word.

Usage

ToWrd()
ToWrdWithBookmark()

WrdBookmarks()
CreateBookmark()
SelectBookmark()
UpdateBookmark()
DeleteBookmark()

RenameBookmark(name, newname, wrd = DescToolsOptions("lastWord"))

RecreateBookmarkChunk()

Arguments

name

the name of the bookmark.

newname

the new name of the bookmark.

wrd

the pointer to a word instance. Can be a new one, created by GetNewWrd() or an existing one, created by GetCurrWrd(). Default is the last created pointer stored in DescToolsOptions("lastWord").

Details

WrdBookmarks() returns a data frame with all bookmarks in the current document (given by a handle created with GetCurrWrd() or GetNewWrd() and stored in DescToolsOptions("lastWord")), containing the bookmark's name, its id and type ("text", "plot", "other"), as well as the page number in the document where it starts.

   > DescToolsAddIns::WrdBookmarks()
     id         name pagenr type
   1  2 bmt182295322      1 text
   2  3 bmp937470551      1 plot

ToWrd() directly sends the evaluation of the selected object in the source panel to the current Word instance. The function is generic and acts in dependency on the selected object. So far there are interfaces for characters, tables, models. Note that the inserted text is no longer updateable; as soon as it is inserted in the Word document the connection to it is lost.

ToWrdWithBookmark() inserts the object in the Word document and defines a bookmark that covers the whole range of the inserted object (including tables or graphics). Then the selected command chunk in the Rstudio source pane is enclosed in brackets and the name of the new defined bookmark is therein inserted as meta tag. If the R-code is later changed, the output in Word can simply be refreshed by selecting the code chunk in RStudio (including the meta tag) and click on the menu UpdateBookmark() (of course it's convenient to have a shortcut defined for that).

CreateBookmark() creates a bookmark at the current cursor position in a in an open Word document, using the currently selected text in RStudio as name. SelectBookmark(), DeleteBookmark() behave analogously.

RecreateBookmarkChunk() recreates the selected chunks in RStudio by inserting a bookmark if not existing and updating it with the result.

With the BookmarkDlg() there's an interactive support for handling bookmarks. Found bookmarks are presented in a sortable and filterable listbox. Selecting, deleting and renaming (not yet implemented) the selected bookmark is supported.

 Bookmark dialog

Author(s)

Andri Signorell <andri@signorell.net>


[Package DescToolsAddIns version 1.10 Index]