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

...

Description

Excerpt

Deletes one or more columns from the table.

Signature
C#
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)
{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#}
Parameters
Param
startIndex
startIndex

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

Param
numColumns
numColumns

The number of columns to delete.

Example
Code Block
csharp
csharp
titleC#

tbl.DeleteColumns(2, 5);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

tbl.DeleteColumns(2, 5)
{code} {example}