Get or Set the Font in Word
WrdFont
can be used to get and set the font in Word for the text to be inserted. WrdFont
returns the font at the current cursor position.
WrdFont(wrd = DescToolsOptions("lastWord")) WrdFont(wrd) <- value
value |
the font to be used to the output. This should be defined as a list containing fontname, fontsize, bold and italic flags: |
wrd |
the pointer to a word instance. Can be a new one, created by |
The font color can be defined by a Word constant beginning with wdConst$wdColor
.
The defined colors can be listed with grep("wdColor", names(wdConst), val=TRUE)
.
a list of the attributes of the font in the current cursor position:
name |
the fontname |
size |
the fontsize |
bold |
bold |
italic |
italic |
color |
the fontcolor |
Andri Signorell <andri@signorell.net>
## Not run: # Windows-specific example wrd <- GetNewWrd() for(i in seq(10, 24, 2)) ToWrd(gettextf("This is Arial size %s \n", i), font=list(name="Arial", size=i)) for(i in seq(10, 24, 2)) ToWrd(gettextf("This is Times size %s \n", i), font=list(name="Times", size=i)) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.