我在 Excel 工作表中复制和插入行,如下所示:
while (rowsToAdd > 0)
{
// copy the existing row
insertionCell.EntireRow.Copy(Type.Missing);
// location of the new row
Range newRow = insertionCell.EntireRow.get_Offset(1, 0).EntireRow;
// insert the new row
newRow.Insert(XlInsertShiftDirection.xlShiftDown, Type.Missing);
rowsToAdd--;
}
我遇到的问题是,有时,我在最初复制的行周围留下了一个选择框。
有没有办法可以取消选择框(通常使用 Escape 键的方式?)