Returns the worksheet with the specified name. This property is an indexer for the Worksheets class.

 public Worksheet this[string name] { get; }
Public Default ReadOnly Property Item(ByVal name As String) As Worksheet

The name of the worksheet to get.

The worksheet with the specified name.

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