Usage
createCellStyle(wb, hAlign=NULL, vAlign=NULL, borderPosition=NULL,
borderPen="BORDER_NONE", borderColor=NULL, fillBackgroundColor=NULL,
fillForegroundColor=NULL, fillPattern=NULL, font=NULL, dataFormat=NULL)setCellStyle(cell, cellStyle)
getCellStyle(cell)
Arguments
hAlign
a character specifiying the horizontal alignment. Valid
values are "ALIGN_CENTER", "ALIGN_CENTER_SELECTION", "ALIGN_FILL",
"ALIGN_GENERAL", "ALIGN_JUSTIFY", "ALIGN_LEFT", "ALIGN_RIGHT".
vAlign
a character specifiying the vertical alignment. Valid
values are "VERTICAL_BOTTOM", "VERTICAL_CENTER", "VERTICAL_JUSTIFY",
"VERTICAL_TOP".
borderPosition
a character specifiying the border position.
Valid values are "BOTTOM", "LEFT", "TOP", "RIGHT".
borderPen
a character specifiying the border pen. Valid values
are "BORDER_DASH_DOT", "BORDER_DASH_DOT_DOT1", "BORDER_DASHED",
"BORDER_DOTTED", "BORDER_DOUBLE", "BORDER_HAIR", "BORDER_MEDIUM",
"BORDER_MEDIUM_DASH_DOT1", "BORDER_MEDIUM_DASH_DOT_DOT1",
borderColor
a character specifiying the border color. Any
color names as returned by colors
can be
used. fillBackgroundColor
a character specifiying the fill background
color. Any color names as returned by
colors
can be used. fillForegroundColor
a character specifiying the fill foreground
color. Any color names as returned by
colors
can be used. fillPattern
a character specifiying the fill pattern. Valid
values are "BRICKS1", "DIAMONDS1", "FINE_DOTS", "LEAST_DOTS1",
"LESS_DOTS1", "NO_FILL", "SOLID_FOREGROUND", "SPARSE_DOTS",
"SQUARES1", "THICK_BACKWARD_DIAG", "THICK_FORWARD_DIAG",
"THICK_HOR
dataFormat
a character specifying the data format. See
Details.
cellStyle
a CellStyle
object as returned by
createCellStyle
.