Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Returns the number of columns in the specified row of the table.

Signature
C#
C#
 public int GetNumColumns(int row)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function GetNumColumns(ByVal row As Integer) As Integer
{signature}
{parameters}
{param:row}The row for which to return the nummber of columns.{param}
{example}{code:csharp|title=C#}
Parameters
Param
row
row

The row for which to return the nummber of columns.

Example
Code Block
csharp
csharp
titleC#

tbl.GetNumColumns(4);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

tbl.GetNumColumns(4)
{code} {example}