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 block of columns in the worksheet to the left of the specified column.{excerpt}
{signature:C#}
 public void InsertColumns(int columnNumber, int columnCount)
{signature}{signature: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#}
ws.InsertColumns(3, 10);{code}
{code:vb.net|title=vb.net}
ws.InsertColumns(3, 10){code}

{example}