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 an int representing the number of rows in the first row of this table.

{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}
Signature
C#C#
Wiki Markup
{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}{signature:vb.net
vb.net
}
Public ReadOnly Property NumRows() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle