回复 3楼费跃的帖子
可以使用FindChildView方法。
代码参考:
- FarPoint.Win.Spread.SheetView ss, ss1;
- ss = fpSpread1.Sheets[0].FindChildView(0, 0);
- if (ss != null)
- {
- ss1 = ss.GetChildView(1, 0);
- if (ss1 != null)
- {
- Console.WriteLine(ss1.Cells[0, 0].Text + " - " + ss1.Cells[0, 1].Text + " - " + ss1.Cells[0, 2].Text);
- }
- }
复制代码 |