Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Returns the worksheet with the specified name. This property is an indexer for the [Worksheets|Worksheets] class.{excerpt}
{signature:C#}
 public Worksheet this[string name] { get; }
{signature}{signature:vb.net}
Public Default ReadOnly Property Item(ByVal name As String) As Worksheet
{signature}
{parameters}
{param:name}The name of the worksheet to get.{param}
{returns}The worksheet with the specified name.{returns}
{example}{code:csharp|title=C#}
Worksheet Sheet1 = oWorkbook.Worksheet["Sheet1"];{code}
{code:vb.net|title=vb.net}
Dim Sheet1 As Worksheet = oWorkbook.Worksheet("Sheet1"){code}
{example}