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 columns in the specified row of the table.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the number of columns in the specified row of the table.{excerpt}
{signature:C#}
 public int GetNumColumns(int row)
Signature
{signature}{signature:vb.net
vb.net
}
Public Function GetNumColumns(ByVal row As Integer) As Integer
Parameters
{signature}
{parameters}
{param:row}The row for which to return the nummber of columns.{param}
{example}{code:csharp|title=C#}
tbl.GetNumColumns(4);
{code}
{code:vb.net
|title=vb.net
}
tbl.GetNumColumns(4){code}

{example}
Param
rowrow

The row for which to return the nummber of columns.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle