PrintSetup(xlsx)
PrintSetup()所属R语言包:xlsx
Function to manipulate print setup.
函数来操作打印设置。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Function to manipulate print setup.
函数来操作打印设置。
用法----------Usage----------
printSetup(sheet, fitHeight=NULL,
fitWidth=NULL, copies=NULL, draft=NULL, footerMargin=NULL,
headerMargin=NULL, landscape=FALSE, pageStart=NULL, paperSize=NULL,
noColor=NULL)
参数----------Arguments----------
参数:sheet
a worksheet object Worksheet.
工作表对象Worksheet。
参数:fitHeight
numeric value to set the number of pages high to fit the sheet in.
数值设置的页面数量高,以适应纸张英寸
参数:fitWidth
numeric value to set the number of pages wide to fit the sheet in.
数值设置的页宽,以适应纸张英寸
参数:copies
numeric value to set the number of copies.
数值设置的份数。
参数:draft
logical indicating if it's a draft or not.
逻辑表明如果它是一个草案或没有。
参数:footerMargin
numeric value to set the footer margin.
数值设置页脚边距。
参数:headerMargin
numeric value to set the header margin.
数值设置页眉边距。
参数:landscape
logical value to specify the paper orientation.
逻辑值的指定纸张的方向。
参数:pageStart
numeric value from where to start the page numbering.
从哪里开始的页面编号的数值。
参数:paperSize
character to set the paper size. Valid values are "A4_PAPERSIZE", "A5_PAPERSIZE", "ENVELOPE_10_PAPERSIZE", "ENVELOPE_CS_PAPERSIZE", "ENVELOPE_DL_PAPERSIZE", "ENVELOPE_MONARCH_PAPERSIZE", "EXECUTIVE_PAPERSIZE", "LEGAL_PAPERSIZE", "LETTER_PAPERSIZE".
字符设置纸张尺寸。有效值为“A4_PAPERSIZE的”,“A5_PAPERSIZE”,“ENVELOPE_10_PAPERSIZE”中,“ENVELOPE_CS_PAPERSIZE”中,“ENVELOPE_DL_PAPERSIZE”中,“ENVELOPE_MONARCH_PAPERSIZE”,“EXECUTIVE_PAPERSIZE”,的“LEGAL_PAPERSIZE”,“LETTER_PAPERSIZE”。
参数:noColor
logical value to indicate if the prints should be color or not.
逻辑值,以指示如果打印颜色应该或不。
Details
详细信息----------Details----------
Other settings are available but not exposed. Please see the java docs.
其他设置也有,但没有暴露出来。请参阅Java文档。
值----------Value----------
A reference to a java PrintSetup object.
一个java PrintSetup对象的一个参考。
(作者)----------Author(s)----------
Adrian Dragulescu
实例----------Examples----------
wb <- createWorkbook()
sheet <- createSheet(wb, "Sheet1")
ps <- printSetup(sheet, landscape=TRUE, copies=3)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|