Font {xlsx} | R Documentation |
Create a Font object.
Font(wb, color=NULL, heightInPoints=NULL, name=NULL, isItalic=FALSE, isStrikeout=FALSE, isBold=FALSE, underline=NULL, boldweight=NULL) is.Font(x)
wb |
a workbook object as returned by
|
color |
a character specifiying the font color. Any
color names as returned by |
heightInPoints |
a numeric value specifying the font height. Usual values are 10, 12, 14, etc. |
name |
a character value for the font to use. All values that you see in Excel should be available, e.g. "Courier New". |
isItalic |
a logical indicating the font should be italic. |
isStrikeout |
a logical indicating the font should be stiked out. |
isBold |
a logical indicating the font should be bold. |
underline |
a numeric value specifying the thickness of the underline. Allowed values are 0, 1, 2. |
boldweight |
a numeric value indicating bold weight. Normal is 400, regular bold is 700. |
x |
A Font object, as returned by |
... |
arguments get passed to |
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.
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.
Adrian Dragulescu
CellStyle
for using the a Font
object.
## Not run: font <- Font(wb, color="blue", isItalic=TRUE) ## End(Not run)