I am trying to select all the cells in an Excel sheet in the Excel.Range
object of C# for applying auto fit, border etc. I have some merged cells within the sheets.
Is there any simple trick to do so?
public void refreshSheetColumsSize(Worksheet ws)
{
ws.get_Range("a1").EntireRow.EntireColumn.Select();
}