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

Signature
C#C#
Wiki Markup
{description}
{excerpt}Inserts a column in the worksheet to the left of the specified column.{excerpt}
{signature:C#}
 public void InsertColumn(int columnNumber)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub InsertColumn(ByVal columnNumber As Integer)
Parameters
{signature}
{parameters}
{param:columnNumber}The 0\-based number of the column to insert.{param}
{example}{code:csharp|title=C#}
ws.InsertColumn(3);
{code}
{code:vb.net
|title=vb.net
}
ws.InsertColumn(3){code}

{example}
Param
columnNumbercolumnNumber

The 0-based number of the column to insert.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle