1、复制
FarPoint.Win.Spread.Model.CellRange cr = new FarPoint.Win.Spread.Model.CellRange(0, 0, 2, sheetView.ColumnCount);
sheetView.ClipboardCopy(cr, ClipboardCopyOptions.All);
2、粘贴
sheetView.SetActiveCell(4, -1); //激活单元格
sheet.ClipboardPaste(ClipboardPasteOptions.All);
粘贴后单元格的宽度和高度没有发生变化 |
|