Alignment(xlsx)
Alignment()所属R语言包:xlsx
Create an Alignment object.
创建一个阵营对象。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Create an Alignment object, useful when working with cell styles.
创建一个对齐的对象,有用的工作时,单元格样式。
用法----------Usage----------
Alignment(horizontal=NULL, vertical=NULL, wrapText=FALSE,
rotation=0, indent=0)
is.Alignment(x)
参数----------Arguments----------
参数:horizontal
a character value specifying the horizontal alignment. Valid values come from constant HALIGN_STYLES_.
指定一个字符值的水平对齐方式。有效值不变HALIGN_STYLES_。
参数:vertical
a character value specifying the vertical alignment. Valid values come from constant VALIGN_STYLES_.
指定一个字符值的垂直对齐方式。有效值不变VALIGN_STYLES_。
参数:wrapText
a logical indicating if the text should be wrapped.
逻辑应该被包裹的文字。
参数:rotation
a numerical value indicating the degrees you want to rotate the text in the cell.
一个数值,表示你要在单元格中的文本旋转度。
参数:indent
a numerical value indicating the number of spaces you want to indent the text in the cell.
一个数值的空格数,你想在单元格中的文本缩进。
参数:x
An Alignment object, as returned by Alignment.
对齐对象,返回的Alignment。
值----------Value----------
Alignment returns a list with components from the input argument, and a class attribute "Alignment". Alignment objects are used when constructing cell styles.
Alignment返回一个列表的组件的输入参数,和“对齐方式”一类的属性。对齐对象时使用的构造单元格样式。
is.Alignment returns TRUE if the argument is of class "Alignment" and FALSE otherwise.
is.Alignment返回TRUE,如果参数是类的“对齐”和FALSE否则。
(作者)----------Author(s)----------
Adrian Dragulescu
参见----------See Also----------
CellStyle for using the a Alignment object.
CellStyle对象使用一个Alignment。
实例----------Examples----------
# you can just use h for horizontal, since R does the matching for you[你可以使用h的水平,因为R的匹配你]
a1 <- Alignment(h="ALIGN_CENTER", rotation=90) # centered and rotated![中心和旋转!]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|