回复 1楼刘君的帖子
可以使用Spread的GetCellRectangle方法。
语法:
- public Rectangle GetCellRectangle(int rowViewportIndex, int columnViewportIndex, int row, int column);
复制代码
比如【0,0】单元格的左下角就是:
- Rectangle rc = this.fpSpread1.GetCellRectangle(0, 0, 0, 0);
- Point p = new Point(rc.Right, rc.Bottom);
复制代码 |