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 one or more columns from the table.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Deletes one or more columns from the table.{excerpt}
{signature:C#}
 public void DeleteColumns(int startIndex, int numColumns)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub DeleteColumns(ByVal startIndex As Integer, ByVal numColumns As Integer)
Parameters
{signature}
{parameters}
{param:startIndex}The 0\-based index of the first column to delete.{param}
{param:numColumns}The number of columns to delete.{param}
{example}{code:csharp|title=C#}
tbl.DeleteColumns(2, 5);
{code}
{code:vb.net
|title=vb.net
}
tbl.DeleteColumns(2, 5){code}

{example}
Param
startIndexstartIndex

The 0-based index of the first column to delete.

Param
numColumnsnumColumns

The number of columns to delete.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle