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 number of worksheets in the workbook.{excerpt}
{signature:C#}
 public int Count{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Count() As Integer
{signature}
{example}{code:csharp|title=C#}
int numSheets = oWorksheets.Count;{code}
{code:vb.net|title=vb.net}
Dim numSheets As Integer = oWorksheets.Count{code}

{example}