XLConnect (version 0.2-14)

setFillBackgroundColor-methods: Specifying the fill background color for cell styles

Description

Specifies the fill background color for a '>cellstyle.

Usage

# S4 method for cellstyle,numeric
setFillBackgroundColor(object,color)

Arguments

object

The '>cellstyle to manipulate

color

The fill background color to use for the '>cellstyle. The color is normally specified via a corresponding color constant from the XLC object.

See Also

'>workbook, '>cellstyle, setCellStyle, setStyleAction, XLC

Examples

Run this code
# NOT RUN {
# Load workbook (create if not existing)
wb <- loadWorkbook("setFillBackgroundColor.xlsx", create = TRUE)

# Create a worksheet
createSheet(wb, name = "cellstyles")

# Create a custom anonymous cell style
cs <- createCellStyle(wb)

# Specify the fill background color for the cell style created above
setFillBackgroundColor(cs, color = XLC$"COLOR.CORNFLOWER_BLUE")

# Specify the fill foreground color
setFillForegroundColor(cs, color = XLC$"COLOR.YELLOW")

# Specify the fill pattern
setFillPattern(cs, fill = XLC$"FILL.BIG_SPOTS")

# Set the cell style created above for the top left cell (A1) in the 
# 'cellstyles' worksheet
setCellStyle(wb, sheet = "cellstyles", row = 1, col = 1, cellstyle = cs)

# Save the workbook
saveWorkbook(wb)
# }

Run the code above in your browser using DataCamp Workspace