xlsimple (version 1.0.5)

getXLsettings: Get Default 'Excel' cell styles

Description

Get Default 'Excel' cell styles

Usage

getXLsettings(fname = NA)

Arguments

fname

'Excel' file name

Value

list with workbook and default cell styles

Details

If no 'Excel' file is specified then the built in cell styles are used. User-supplied 'Excel' file would need to have the following cell styles specified: xl.descrip, xl.normal, xl.header, xl.header.wrap, xl.hyperlink.

Examples

Run this code
# NOT RUN {
XL.wb <- getXLsettings()
XL.wb <- addXLsheetStd(XL.wb, mtcars)
XL.wb <- addXLsheetStd(XL.wb, mtcars, "mtcars1")
XL.wb <- addXLsheetStd(XL.wb, mtcars, "mtcars2", "Standard mtcars data frame")
XL.wb$pName <- "ProjName" # optional, blank if not included
XL.wb$pDesc <- "ProjDesc" # optional, blank if not included
saveXLworkbook(XL.wb, file.path(tempdir(), 'myXLfile.xlsx'), timeStamp=FALSE, clean=FALSE)
saveXLworkbook(XL.wb, file.path(tempdir(), 'myXLfile.xlsx'), timeStamp=TRUE,  clean=FALSE)
saveXLworkbook(XL.wb, file.path(tempdir(), 'myXLfile.xlsx'), timeStamp=TRUE,  clean=TRUE)
saveXLworkbook(XL.wb, file.path(tempdir(), 'myXLfile.xlsx'))

# }

Run the code above in your browser using DataLab