Returns the worksheet at the specified position. This property is an indexer for the Worksheets class.

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

The 0-based position the worksheet to get.

The worksheet at the specified position.

Worksheet Sheet1 = oWorkbook.Worksheet[0];
Dim Sheet1 As Worksheet = oWorkbook.Worksheet(0)