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
vb.net
vb.net
Public Sub DeleteColumns(ByVal startIndex As Integer, ByVal numColumns As Integer)
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 Block
vb.net
vb.net
titlevb.net
tbl.DeleteColumns(2, 5)