Border(xlsx)
Border()所属R语言包:xlsx
Create an Border object.
建立边界对象。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Create an Border object, useful when working with cell styles.
创建一个Border对象,有用的工作时,单元格样式。
用法----------Usage----------
Border(color="black", position="BOTTOM", pen="BORDER_THIN")
is.Border(x)
参数----------Arguments----------
参数:color
a character vector specifiying the font color. Any color names as returned by colors can be used. For Excel 95 workbooks, only a subset of colors is available, see the constant INDEXED_COLORS_.
一个字符向量specifiying的字体颜色。任何颜色名可以作为返回colors的使用。对于Excel 95工作簿中,只有一小部分的颜色,不断INDEXED_COLORS_。
参数:position
a character vector specifying the border position. Valid values are "BOTTOM", "LEFT", "TOP", "RIGHT".
一个字符向量确定的边界位置。有效的值是“自下而上”,“左”,“TOP”,“RIGHT”。
参数:pen
a character vector specifying the pen style. Valid values come from constant BORDER_STYLES_.
字符向量指定的画笔样式。有效值不变BORDER_STYLES_。
参数:x
An Border object, as returned by Border.
一个Border对象,返回的Border。
Details
详细信息----------Details----------
The values for the color, position, or pen arguments are replicated to the longest of the them.
颜色,位置,或笔等参数的值被复制到他们中最长的。
值----------Value----------
Border returns a list with components from the input argument, and a class attribute "Border". Border objects are used when constructing cell styles.
Border返回一个列表的组件的输入参数,和class属性“边界”。建设Border对象时使用的单元格样式。
is.Border returns TRUE if the argument is of class "Border" and FALSE otherwise.
is.Border返回TRUE,如果参数是类的“边框”和FALSE否则。
(作者)----------Author(s)----------
Adrian Dragulescu
参见----------See Also----------
CellStyle for using the a Border object.
CellStyle对象使用一个Border。
实例----------Examples----------
border <- Border(color="red", position=c("TOP", "BOTTOM"),
pen=c("BORDER_THIN", "BORDER_THICK"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|