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
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:vb.net}
Public Sub InsertColumn(ByVal columnNumber As Integer)
{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}