Create a Font object.
is.Font(x)Font(
wb,
color = NULL,
heightInPoints = NULL,
name = NULL,
isItalic = FALSE,
isStrikeout = FALSE,
isBold = FALSE,
underline = NULL,
boldweight = NULL
)
A Font object, as returned by Font
.
a workbook object as returned by createWorkbook
or
loadWorkbook
.
a character specifiying the font color. Any color names as
returned by colors
can be used. Or, a hex
character, e.g. "#FF0000" for red. For Excel 95 workbooks, only a subset of
colors is available, see the constant INDEXED_COLORS_
.
a numeric value specifying the font height. Usual values are 10, 12, 14, etc.
a character value for the font to use. All values that you see in Excel should be available, e.g. "Courier New".
a logical indicating the font should be italic.
a logical indicating the font should be stiked out.
a logical indicating the font should be bold.
a numeric value specifying the thickness of the underline. Allowed values are 0, 1, 2.
a numeric value indicating bold weight. Normal is 400, regular bold is 700.
Font
returns a list with a java reference to a Font
object, and a class attribute "Font".
is.Font
returns TRUE
if the argument is of class "Font" and
FALSE
otherwise.
Default values for NULL
parameters are taken from Excel. So the
default font color is black, the default font name is "Calibri", and the
font height in points is 11.
For Excel 95/2000/XP/2003, it is impossible to set the font to bold. This limitation may be removed in the future.
NOTE: You need to have a Workbook
object to attach a Font
object to it.
CellStyle
for using the a Font
object.
# NOT RUN {
# }
# NOT RUN {
font <- Font(wb, color="blue", isItalic=TRUE)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab