Articles in this section
Category / Section

How to UnFreeze the Rows and Columns in XlsIO?

1 min read

You can unfreeze rows and columns by using the property called RemovePanes. Please refer the below code snippet which illustrates this:

C#

sheet.Range[8, 1].FreezePanes();
sheet.RemovePanes();

 

VB

sheet.Range(8, 1).FreezePanes()
sheet.RemovePanes()

 

Here is the sample for your reference:


Freeze_Panes.zip

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied