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

Signature
C#
C#
 public void InsertColumn(int columnNumber)
Signature
vb.net
vb.net
Public Sub InsertColumn(ByVal columnNumber As Integer)
Parameters
Param
columnNumber
columnNumber

The 0-based number of the column to insert.

Example
Code Block
csharp
csharp
titleC#
ws.InsertColumn(3);
Code Block
vb.net
vb.net
titlevb.net
ws.InsertColumn(3)