Page tree

Versions Compared

Key

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

Excerpt

Inserts one or more columns at the specified position in the table.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Inserts one or more columns at the specified position in the table.{excerpt}
{signature:C#}
 public void InsertColumns(int index, int numColumns)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub InsertColumns(ByVal index As Integer, ByVal numColumns As Integer)
Parameters
{signature}
{parameters}
{param:index}The 0\-based index of the first column to insert.{param}
{param:numColumns}The number of columns to insert.{param}
{example}{code:csharp|title=C#}
tbl.InsertColumns(2, 5);
{code}
{code:vb.net
|title=vb.net
}
tbl.InsertColumns(2, 5){code}

{example}
Param
indexindex

The 0-based index of the first column to insert.

Param
numColumnsnumColumns

The number of columns to insert.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle