Sets or returns the width of the workbook's window.

public int Width{ get; set; }
Public Property Width() As Integer
          //--- Get the width of the workbook window
          int winWidth = wb.Width;

          //--- Set the width of the workbook window
          wb.Width = 500;
        
          '--- Get the width of the workbook window
          Dim winWidth As Integer = wb.Width

          '--- Set the width of the workbook window
          wb.Width = 500