Returns the worksheet specified by a 0-based index. This property is an indexer for the Workbook class.

 public Worksheet this[int sheetOffset] { get; }
Public Default ReadOnly Property Item(ByVal sheetOffset As Integer) As Worksheet

The 0-based index of the worksheet. The first worksheet is Worksheet[0].

The worksheet at the specified index.

          //--- Get Worksheet at position 0
          Worksheet ws = wb[0];
          '--- Get Worksheet at position 0
          Dim ws As Worksheet = wb(0)