getCellStyle-methods(XLConnect)
getCellStyle-methods()所属R语言包:XLConnect
Retrieving named cell styles
正在命名的单元格样式
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Retrieves a named cell style from a workbook.
获取一个命名的单元格样式从一个workbook。
用法----------Usage----------
## S4 method for signature 'workbook'
getCellStyle(object,name)
参数----------Arguments----------
参数:object
The workbook to use
workbook使用
参数:name
The name of the cellstyle to retrieve
cellstyle来检索的名称
Details
详细信息----------Details----------
Retrieves the cellstyle with the specified name.
检索cellstyle指定的name。
(作者)----------Author(s)----------
Thomas Themel<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参见----------See Also----------
workbook, cellstyle, setStyleAction, setStyleNamePrefix, setCellStyle, setDataFormat, setBorder, setFillBackgroundColor, setFillForegroundColor, setFillPattern, setWrapText
workbook,cellstyle,setStyleAction,setStyleNamePrefix,setCellStyle,setDataFormat,setBorder,setFillBackgroundColor,setFillForegroundColor,setFillPattern,setWrapText
实例----------Examples----------
# Load workbook (create if not existing)[负载工作簿(如果不存在创建)]
wb <- loadWorkbook("getCellstyles.xlsx", create = TRUE)
# You wouldn't usually ignore the return value here...[你通常不会在这里忽略返回值...]
createCellStyle(wb, 'Header')
# ... but if you did it doesn't hurt.[...但如果你这样做,是不会受到伤害。]
cs <- getCellStyle(wb, 'Header')
# Specify the cell style to use a solid foreground color[指定的单元格样式,使用了坚实的前景色]
setFillPattern(cs, fill = XLC$"FILL.SOLID_FOREGROUND")
# Specify the foreground color to be used[指定要使用的前景色]
setFillForegroundColor(cs, color = XLC$"COLOR.RED")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|