setSheetColor-methods(XLConnect)
setSheetColor-methods()所属R语言包:XLConnect
Setting colors on worksheet tabs
设置工作表标签颜色
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Sets a color on a specified worksheet tab. This only works for xlsx files.
设置指定的工作表“选项卡上的颜色。这仅适用于xlsx文件。
用法----------Usage----------
## S4 method for signature 'workbook,character'
setSheetColor(object,sheet,color)
## S4 method for signature 'workbook,numeric'
setSheetColor(object,sheet,color)
参数----------Arguments----------
参数:object
The workbook to use
workbook使用
参数:sheet
The name or index of the sheet on which to set the tab color
设置标签的颜色的名称或索引的表
参数:color
The color to use for the sheet tab. The color is normally specified via a corresponding color constant from the XLC object.
要使用的颜色的工作表标签。通常是指通过相应的颜色常数从XLC对象的颜色。
(作者)----------Author(s)----------
Nicola Lambiase<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参见----------See Also----------
workbook, XLC
workbook,XLC
实例----------Examples----------
# Load workbook (create if not existing)[负载工作簿(如果不存在创建)]
wb <- loadWorkbook("sheetcolor.xlsx", create = TRUE)
# Create a worksheet named 'Sheet1'[创建一个名为“工作表Sheet1工作表”]
createSheet(wb, name = "Sheet1")
# Set the "Sheet1" tab color as red[设置“工作表Sheet1”标签的颜色为红色]
setSheetColor(wb, "Sheet1", XLC$COLOR.RED)
# Create a worksheet named 'Sheet2'[创建一个工作表,命名为“Sheet2的”]
createSheet(wb, name = "Sheet2")
# Set the tab color of the second workbook sheet as green[第二个工作簿片的绿色,设置标签的颜色]
setSheetColor(wb, 2, XLC$COLOR.GREEN)
# Save workbook (this actually writes the file to disk)[保存工作簿(这实际上是将文件写入到磁盘)]
saveWorkbook(wb)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|