Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Deletes a column and its contents from the worksheet. Columns after the deleted column will be moved to the left.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Deletes a column and its contents from the worksheet. Columns after the deleted column will be moved to the left.{excerpt}
{signature:C#}
 public void DeleteColumn(int columnNumber)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub DeleteColumn(ByVal columnNumber As Integer)
Parameters
{signature}
{parameters}
{param:columnNumber}The 0\-based number of the column to remove.{param}
{example}{code:csharp|title=C#}
ws.DeleteColumn(9);
{code}
{code:vb.net
|title=vb.net
}
ws.DeleteColumn(9){code}

{example}
Param
columnNumbercolumnNumber

The 0-based number of the column to remove.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle