Row Height and column Width Property
Private Sub CommandButton1_Click()
Rows(5).RowHeight = 25
Rows("2:3").RowHeight = 25
Range("C4:E6").RowHeight = 25
Range("C4:E6").ColumnWidth = 11
Columns("B").ColumnWidth = 8
End Sub
Private Sub CommandButton2_Click()
'to change the row height
Rows(5).RowHeight = StandardHeight
Rows("2:3").RowHeight = StandardHeight
Range("C4:E6").RowHeight = StandardHeight
'to change the column width
Range("C4:E6").ColumnWidth = StandardWidth
Columns("B").ColumnWidth = StandardWidth
Columns("D:H").ColumnWidth = StandardWidth
End Sub