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 a block of columns in the worksheet to the left of the specified column.

Signature
C#
C#
 public void InsertColumns(int columnNumber, int columnCount)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub InsertColumns(ByVal columnNumber As Integer, ByVal columnCount As Integer)
{signature}
{parameters}
{param:columnNumber}The 0\-based number of the column to insert.{param}
{param:columnCount}The number of columns to insert.{param}
{example}{code:csharp|title=C#}
Parameters
Param
columnNumber
columnNumber

The 0-based number of the column to insert.

Param
columnCount
columnCount

The number of columns to insert.

Example
Code Block
csharp
csharp
titleC#

ws.InsertColumns(3, 10);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

ws.InsertColumns(3, 10)
{code} {example}