1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/wrappers.R
\name{getBaseFont}
\alias{getBaseFont}
\title{Return the workbook default font}
\usage{
getBaseFont(wb)
}
\arguments{
\item{wb}{A workbook object}
}
\description{
Return the workbook default font
Returns the base font used in the workbook.
}
\examples{
## create a workbook
wb <- createWorkbook()
getBaseFont(wb)
## modify base font to size 10 Arial Narrow in red
modifyBaseFont(wb, fontSize = 10, fontColour = "#FF0000", fontName = "Arial Narrow")
getBaseFont(wb)
}
\author{
Alexander Walker
}
|