当前位置:编程学习 > C#/ASP.NET >>

录制的EXCE分级显示的VB宏代码,转换为C#的问题

录制了分级显示的宏代码:
Rows("9:9").Select
    Selection.Rows.Group
    Rows("7:9").Select
    Selection.Rows.Group

这是VB的,但转换为C#总是出问题,因为C#的EXCEL的Group有四个参数,分别是(object start,object end,object by,object proids),不知道后面两个参数是怎么用的

有没有高手能把上面的代码直接译成C#。
--------------------编程问答-------------------- 用以下两种代码都提示“Group方法无效”

1.
   //this.SetTree(xlsSheet, I_BeginRow - 1);
            //Excel.Range rTemp;
            //rTemp = xlsSheet.Rows.get_Range(xlsSheet.Cells[2, 1], xlsSheet.Cells[3, 1]);
            //rTemp.Select();
            //rTemp.Rows.Group(2, 5, 1, 1);


2.
    xlsSheet.Rows.get_Range(xlsSheet.Cells[2, 1], xlsSheet.Cells[3, 1]).Rows.Group(2, 3, 1, 1);

请高手帮忙 --------------------编程问答-------------------- 请高手帮忙啊
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,