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
vb.net
vb.net
Public Sub InsertColumns(ByVal columnNumber As Integer, ByVal columnCount As Integer)
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 Block
vb.net
vb.net
titlevb.net
ws.InsertColumns(3, 10)