Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Adds a specified number of columns to the horizontal end of the table.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Adds a specified number of columns to the horizontal end of the table.{excerpt}
{signature:C#}
 public void AddColumns(int numColumns)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub AddColumns(ByVal numColumns As Integer)
Parameters
{signature}
{parameters}
{param:numColumns}The number of columns to add to the table.{param}
{example}{code:csharp|title=C#}
tbl.AddColumns(4);
{code}
{code:vb.net
|title=vb.net
}
tbl.AddColumns(4){code}

{example}
Param
numColumnsnumColumns

The number of columns to add to the table.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle