{description}
{excerpt}Returns an {{int}} representing the number of rows in the first row of this table.{excerpt}
{signature:C#}
 public int NumRows{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property NumRows() As Integer
{signature}
{example}{code:csharp|title=C#}

          int numRows = oTable.NumRows;
        {code}
{code:vb.net|title=vb.net}

          Dim numRows As Integer = oTable.NumRows
        {code}

{example}