Sets or returns the height of the workbook's window

public int Height{ get; set; }
Public Property Height() As Integer
          //--- Get the height of the workbook window
          int winHeight = wb.Height;

          //--- Set the height of the workbook window
          wb.Height = 500;
        
          '--- Get the height of the workbook window
          Dim winHeight As Integer = wb.Height

          '--- Set the height of the workbook window
          wb.Height = 500