Freezing columns in EPPlus (an Excel split function)

后端 未结 2 1330
滥情空心
滥情空心 2021-02-05 01:22

I\'ve been working a lot with EPPlus to generate Excel files for the number of exports that my project requires me to do. Most of the exports that they want tend to match up per

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-05 01:35

    I realized that when using @IronMan84's suggestion, if you're only interested in the row but not the column. You can use

    ws.View.FreezePanes(3, 1); // (Freeze Row 2 and no column)
    

提交回复
热议问题