addHyperlink(xlsx)
addHyperlink()所属R语言包:xlsx
Add a hyperlink to a cell.
添加超链接的单元格。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Add a hyperlink to a cell to point to an external resource.
添加超链接的单元格指向外部资源。
用法----------Usage----------
addHyperlink(cell, address, linkType=c("URL", "DOCUMENT",
"EMAIL", "FILE"), hyperlinkStyle=NULL)
参数----------Arguments----------
参数:cell
a Cell object.
一个Cell对象。
参数:address
a string pointing to the resource.
指向一个字符串的资源。
参数:linkType
a the type of the resource.
一个类型的资源。
参数:hyperlinkStyle
a CellStyle object. If NULL a default cell style is created, blue underlined font.
一个CellStyle对象。如果NULL创建一个默认的单元格样式,蓝色带下划线的字体。
Details
详细信息----------Details----------
The cell needs to have content before you add a hyperlink to it. The contents of the cells don't need to be the same as the address of the hyperlink. See the examples.
单元需要的内容,然后再添加一个超链接到它。无关的单元不需要作为超链接的地址是相同的。见的例子。
值----------Value----------
None. The modification to the cell is done in place.
无。该单元格的改性要做到位。
(作者)----------Author(s)----------
Adrian Dragulescu
实例----------Examples----------
wb <- createWorkbook()
sheet1 <- createSheet(wb, "Sheet1")
rows <- createRow(sheet1, 1:10) # 10 rows[10行]
cells <- createCell(rows, colIndex=1:8) # 8 columns[8列]
cat("Add hyperlinks to a cell")
cell <- cells[[1,1]]
address <- "http://poi.apache.org/"
setCellValue(cell, "click me!")
addHyperlink(cell, address)
# Don't forget to save the workbook ... [不要忘了保存工作簿...]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|