示例#1
0
文件: XSSFRow.cs 项目: yesonsik/npoi
 public ICell CopyCell(int sourceIndex, int targetIndex)
 {
     return(CellUtil.CopyCell(this, sourceIndex, targetIndex));
 }
示例#2
0
文件: XSSFCell.cs 项目: founshi/npoi
 public ICell CopyCellTo(int targetIndex)
 {
     return(CellUtil.CopyCell(this.Row, this.ColumnIndex, targetIndex));
 }