setBorder-methods(XLConnect)
setBorder-methods()所属R语言包:XLConnect
Specifying borders for cell styles
指定边框,单元格样式
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Specifies borders for a cellstyle.
指定边界的cellstyle。
用法----------Usage----------
## S4 method for signature 'cellstyle'
setBorder(object,side,type,color)
参数----------Arguments----------
参数:object
The cellstyle to edit
cellstyle编辑
参数:side
A vector with any combination of {"bottom", "left", "right", "top", "all"}
一个向量的任意组合的“底”,“左”,“右”,“顶”,“所有”}
参数:type
Specifies the border type to be used - it is normally specified by a corresponding XLC constant (see the XLC border constant, e.g. XLC$"BORDER.MEDIUM_DASHED")
指定要使用的边框类型 - 它通常是指由相应的XLC不变(见XLC边界不变,例如XLC$"BORDER.MEDIUM_DASHED")
参数:color
Defines the border color and is normally also specified via an XLC constant.
定义边框颜色,和通常也通过XLC不变指定的。
Details
详细信息----------Details----------
Specifies the border for a cellstyle. Note that the arguments type and color should be of the same length as side. In other words, for each specified side there should be a corresponding specification of type and color. If this is not the case the arguments will be automatically replicated to the length of side.
指定边界的cellstyle。注意的论据type和color应侧是相同的长度。换句话说,每个指定的side,type和color应该有一个相应的规范。如果不是这种情况下的参数将被自动复制的长度side。
(作者)----------Author(s)----------
Martin Studer<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参见----------See Also----------
workbook, cellstyle, setCellStyle, setStyleAction, XLC
workbook,cellstyle,setCellStyle,setStyleAction,XLC
实例----------Examples----------
# Load workbook (create if not existing)[负载工作簿(如果不存在创建)]
wb <- loadWorkbook("setBorder.xlsx", create = TRUE)
# Create a worksheet[创建一个工作表]
createSheet(wb, name = "cellstyles")
# Create a custom anonymous cell style[创建一个自定义的匿名单元格样式]
cs <- createCellStyle(wb)
# Specify the border for the cell style created above[指定边框的单元格样式在上面创建]
setBorder(cs, side = c("bottom", "right"), type = XLC$"BORDER.THICK",
color = c(XLC$"COLOR.BLACK", XLC$"COLOR.RED"))
# Set the cell style created above for the top left cell (A1) in the [设置单元格的样式上面创建的左上角的单元格(A1)]
# 'cellstyles' worksheet[“cellstyles”工作表]
setCellStyle(wb, sheet = "cellstyles", row = 1, col = 1, cellstyle = cs)
# Save the workbook[保存工作簿]
saveWorkbook(wb)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|