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

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

Signature
C#
C#
 public void InsertColumns(int index, int numColumns)
Signature
vb.net
vb.net
Public Sub InsertColumns(ByVal index As Integer, ByVal numColumns As Integer)
Parameters
Param
index
index

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

Param
numColumns
numColumns

The number of columns to insert.

Example
Code Block
csharp
csharp
titleC#
tbl.InsertColumns(2, 5);
Code Block
vb.net
vb.net
titlevb.net
tbl.InsertColumns(2, 5)