回复 1楼y418412444的帖子
获取某一列单元格数据的方法如下:- int activeRow = this.FpSpread1.ActiveSheetView.ActiveRow;
- int columnCount = this.FpSpread1.ActiveSheetView.ColumnCount;
- for (int i = 0; i < columnCount; i++)
- {
- string cellText = this.FpSpread1.ActiveSheetView.Cells[activeRow, i].Text;
- }
复制代码
插入图表请参考:
http://blog.gcpowertools.com.cn/ ... A7%A3%E6%9E%90.aspx |