Gridlines in excel through interop

后端 未结 5 531
滥情空心
滥情空心 2021-01-18 06:54

Any idea where the setting is hiding for turning gridlines off while using excel 2003 from interop?

5条回答
  •  耶瑟儿~
    2021-01-18 07:25

    using Excel = Microsoft.Office.Interop.Excel;
    Excel.Application oXL;
    oXL.Windows.get_Item(1).DisplayGridlines = false;
    

提交回复
热议问题