Fill: Create an Fill object.

Description Usage Arguments Value Author(s) See Also Examples

View source: R/Fill.R

Description

Create an Fill object, useful when working with cell styles.

Usage

1
2
3
4
5
6
7
is.Fill(x)

Fill(
  foregroundColor = "lightblue",
  backgroundColor = "lightblue",
  pattern = "SOLID_FOREGROUND"
)

Arguments

x

a Fill object, as returned by Fill.

foregroundColor

a character vector specifiying the foreground 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_.

backgroundColor

a character vector specifiying the foreground 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_.

pattern

a character vector specifying the fill pattern style. Valid values come from constant FILL_STYLES_.

Value

Fill returns a list with components from the input argument, and a class attribute "Fill". Fill objects are used when constructing cell styles.

is.Fill returns TRUE if the argument is of class "Fill" and FALSE otherwise.

Author(s)

Adrian Dragulescu

See Also

CellStyle for using the a Fill object.

Examples

1
  fill <-  Fill()

colearendt/xlsx documentation built on Feb. 4, 2022, 7:34 p.m.