コード例 #1
0
 public void CopyCell(string CellPosition1, string CellPosition2) //  ("A1", "B3")
 {
     CurrCell.AutoFill(excelApp.get_Range(CellPosition1, CellPosition2), Excel.XlAutoFillType.xlFillCopy);
 }
コード例 #2
0
 public xlsf Insert(Excel.XlInsertShiftDirection ShiftCellType)
 {
     CurrCell.Insert(ShiftCellType);
     return(this);
 }
コード例 #3
0
 public void ClearCell()
 {
     CurrCell.Clear();
 }