- public HSSFClientAnchor(int dx1,int dy1,int dx2,int dy2,short col1,int row1,short col2,
- int row2);Creates a new client anchor and sets the top-left and bottom-right coordinates of the anchor.
- Parameters:
- dx1 - the x coordinate within the first cell.
- dy1 - the y coordinate within the first cell.
- dx2 - the x coordinate within the second cell.
- dy2 - the y coordinate within the second cell.
dx2:第二个单元格的开始X坐标
dy2:第二个单元格的开始y坐标
- col1 - the column (0 based); of the first cell.
- row1 - the row (0 based); of the first cell.
- col2 - the column (0 based); of the second cell.
- row2 - the row (0 based); of the second cell.
- col1 图片的左上角放在第几个列cell,
row1 图片的左上角放在第几个行cell,
col2 图片的右下角放在第几个列cell,
row2 图片的右下角放在第几个行cell, - 列宽
sheet.setColumnWidth((short)column,(short)width);
行高
row.setHeight((short)height); - 添加多个图片时:多个pic应该share同一个DrawingPatriarch在同一个sheet里面。
本文深入解析了HSSFClientAnchor类的构造方法,阐述了如何使用dx1、dy1、dx2、dy2、col1、row1、col2、row2参数创建并设置锚点的坐标。详细介绍了参数含义,同时提供了添加图片到Excel工作表的具体步骤。
3848

被折叠的 条评论
为什么被折叠?



