xl.property {excel.link} | R Documentation |
xl.constants
is a list with (surprise!) Excel named constants.
xl.property(...) xl.constants
... |
names of arguments are properties as in Excel VBA, values are properties values. |
An object of class list
of length 2024.
list of class xl.property
.
## Not run: # create random matrix rand_mat = matrix(runif(16), ncol = 4) # put it on the new worksheet xln[a1] = rand_mat # set bold font, format numbers as percent and align it cr[a1] = xl.property(Font.Bold = TRUE, NumberFormat = "0.00%", HorizontalAlignment = xl.constants$xlCenter ) ## End(Not run)