Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns the number of worksheets in the workbook.

{signature}
{example}{code:csharp|title=C#}
int numSlides = slides.Count;
{code}
{code:vbnet|title=vb.net
}
Dim numSlides As Integer = slides.Count{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the number of worksheets in the workbook.{excerpt}
{signature:C#}
 public int Count{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Count() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle