setColumnWidth-methods(XLConnect)
setColumnWidth-methods()所属R语言包:XLConnect
Setting the width of a column in a worksheet
在工作表中设置列宽
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Sets the width of a column in a worksheet.
在工作表中的列的宽度设置。
用法----------Usage----------
## S4 method for signature 'workbook,character'
setColumnWidth(object,sheet,column,width)
## S4 method for signature 'workbook,numeric'
setColumnWidth(object,sheet,column,width)
参数----------Arguments----------
参数:object
The workbook to use
workbook使用
参数:sheet
The name or index of the sheet
在片材的名称或索引
参数:column
The index of the column to resize
列的索引来调整
参数:width
The width of the specified column in units of 1/256th of a character width. If width = -1 (default), the column is auto-sized. If negative otherwise, the column will be sized to the sheet's default column width.
一个字符宽度的1/256th单位指定列的宽度。如果width = -1(默认),该列是自动调整大小。如果为负,否则,列将调整到工作表的默认列宽。
Details
详细信息----------Details----------
Note that the arguments sheet, column and width are vectorized. As such the column width of multiple columns (potentially on different sheets) can be set with one method call.
请注意参数sheet,column和width量化的。因此多个列(可能在不同的表)的列宽可以设置一个方法调用。
(作者)----------Author(s)----------
Martin Studer<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参见----------See Also----------
workbook, setRowHeight
workbook,setRowHeight
实例----------Examples----------
# mtcars xlsx file from demoFiles subfolder of package XLConnect[mtcars xlsx文件demoFiles子文件夹中的包XLConnect]
mtcarsFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")
# Load workbook[负载工作簿]
wb <- loadWorkbook(mtcarsFile)
# Sets the column width of the 3rd column on sheet 'mtcars' [设置表“mtcars第三列的列宽”]
# to 4000/256th (= 15.625) character width[,以4000/256th字符宽度(= 15.625)]
setColumnWidth(wb, sheet = "mtcars", column = 3, width = 4000)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|