当我在列上调用Range.Copy()然后在另一列之前调用Range.Insert()时,它完美地工作;原始列重复到我想要的位置。但是,如果我再次调用Range.Insert()而不再调用Range.Copy(),它会在我想要的位置插入一个新列,但没有任何边框。
我发现如果每次都调用Range.Copy(),输出正是我想要的,但它需要大约5倍的时间。我真的需要那样做吗?
以下是我的参考代码:
Range sheetCols = sheet.Columns;
...
int col = routesStartCol;
foreach (RouteObject route in loc.Routes)
{
Range thisCol = sheetCols[col]; com.Got(thisCol);
if (col == routesStartCol)
thisCol.Copy();
else
thisCol.Insert(XlInsertShiftDirection.xlShiftToRight);
sheetCells[routeNameRow, col] = route.Name;
col++;
}
答案 0 :(得分:1)
oRng1 = oSheet.get_Range("A1", "D1");
oRng2 = oSheet.get_Range("A2", "D2");
oRng1.Copy(oRng2); //copy r1 to r2
//to insert above r2
oRng2.Insert(Excel.XlInsertShiftDirection.xlShiftDown,Excel.XlInsertFormatOrigin.xlFormatFromLeftOrAbove);
答案 1 :(得分:0)
看起来我确实需要每次都复制。当你不复制时它真正做的只是插入一个空白列,默认情况下将列的一些格式复制到左侧。