彩票走势图

Aspose.Cells电子表格组件使用技巧(九):添加图片的超链接

原创|其它|编辑:郝浩|2012-06-27 22:31:32.000|阅读 1850 次

概述:Aspose.Cells允许您在运行时添加图片的超链接到电子表格中。你可以设置/修改成你所需要的屏幕提示和链接地址。本文,通过使用Aspose.Cells API,仅需一些简单的代码便可在工作表中添加图片的超链接。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

Aspose.Cells允许您在运行时添加图片的超链接到电子表格中。你可以设置/修改成你所需要的屏幕提示和链接地址。本文,通过使用Aspose.Cells API,仅需一些简单的代码便可在工作表中添加图片的超链接。

[Java]

//Instantiate a new workbook
Workbook workbook = new Workbook();

//Get the first worksheet
Worksheet worksheet = workbook.getWorksheets().get(0);

//Insert a string value to a cell
worksheet.getCells().get("C2").setValue("Image Hyperlink");

//Set the 4th row height
worksheet.getCells().setRowHeight(3, 100);

//Set the C column width
worksheet.getCells().setColumnWidth(2, 21);

//Add a picture to the C4 cell
int index = worksheet.getPictures().add(3, 2, 3, 2, "f:\\test\\school.jpg");

//Get the picture object
com.aspose.cells.Picture pic = worksheet.getPictures().get(index);

//Set the placement type
pic.setPlacement(PlacementType.FREE_FLOATING);

//Add an image hyperlink
pic.addHyperlink("//www.aspose.com/");
com.aspose.cells.Hyperlink hlink = pic.getHyperlink();

//Specify the screen tip
hlink.setScreenTip("Click to go to Aspose site");

//Save the excel file
workbook.save("f:\\test\\ImageHyperlink.xls");

执行上述代码后,结果如下:

Aspose.Cells,电子表格,


(慧都控件网版权所有,转载请注明出处,否则追究法律责任)
标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP