|
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
请教下面代码中,如何补充完成 复制指定工作表区域到另一工作表区域
谢谢!!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Excel = Microsoft.Office.Interop.Excel;
using Office = Microsoft.Office.Core;
using Microsoft.Office.Tools.Excel;
namespace ExcelAddIn1
{
public partial class ThisAddIn
{
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
Excel.Worksheet newWorksheet;
newWorksheet = (Excel.Worksheet)this.Application.Worksheets.Add();
newWorksheet.Name = "销售";
下面如何将 原有工作表 “明细品名” 中的 Range("A1:F4") 复制到刚才新建的工作表 "销售" 表的 Range("D3:I6") 中
}
}
}
|
|