回复 1楼yuanhs的帖子
感谢您对该问题的反馈。
根据我的理解,您指的是Excel的Shift Cell Down/Shift Cell Left的功能,可以将单元格的内容移动。
Spread的MoveRange方法可以实现此功能,只是将某个单元格移到其他位置,代码参考:
- fpSpread1.ActiveSheet.Cells[0, 0, 2, 2].Text = "Test Move";
- fpSpread1.ActiveSheet.MoveRange(0, 0, 4, 0, 2, 2, true);
复制代码
详细的可以参考随机安装的产品文档,索引如下:
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : MoveRange Method
可以通过Spreqad.ActiveSheet.Cells创建一个Range区域,然后Range暴露了Column, Row属性指定当前区域的第一个单元格的列和行索引。
详细的请参考产品文档,文档索引
Spread Windows Forms 8.0 Product Documentation > Developer's Guide > Understanding the Spreadsheet Objects > Working with Cells > Creating a Range of Cells |