setRowHeight-methods(XLConnect)
setRowHeight-methods()所属R语言包:XLConnect
Setting the height of a row in a worksheet
在工作表中设置行高
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Sets the height of a row in a worksheet.
设置工作表中的一个行的高度。
用法----------Usage----------
## S4 method for signature 'workbook,character'
setRowHeight(object,sheet,row,height)
## S4 method for signature 'workbook,numeric'
setRowHeight(object,sheet,row,height)
参数----------Arguments----------
参数:object
The workbook to use
workbook使用
参数:sheet
The name or index of the sheet to edit
的片材,要编辑的名称或索引
参数:row
The index of the row to resize
调整行的索引
参数:height
The height in points. If height < 0 (default: -1), the row will be sized to the sheet's default row height.
点的高度。如果height < 0(默认值:-1),该行会调整到工作表的默认行高。
Details
详细信息----------Details----------
Note that the arguments sheet, row and height are vectorized. As such the row height of multiple rows (potentially on different worksheets) can be set with one method call.
请注意参数sheet,row和height量化的。作为这种多行的行高(可能在不同的工作表)可以设置一个方法调用。
(作者)----------Author(s)----------
Martin Studer<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参见----------See Also----------
workbook, setColumnWidth
workbook,setColumnWidth
实例----------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 row height of the 1st row on sheet 'mtcars'[设置表“mtcars的第一行的行高”]
# to 20 points[到20点]
setRowHeight(wb, sheet = "mtcars", row = 1, height = 20)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|