{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 numSlides = slides.Count;{code}
{code:vbnet|title=vb.net}
Dim numSlides As Integer = slides.Count{code}

{example}