_Columns.Remove(Object) Method

Definition

Removes the Column object specified by Index and resets the Table.

public:
 void Remove(System::Object ^ Index);
public void Remove (object Index);
Public Sub Remove (Index As Object)

Parameters

Index
Object

A 1-based index value that can be either an Integer (int in C#) value representing the column index for the Columns collection or a String (string in C#) representing the Name of the Column.

Remarks

The Remove method resets the Table by moving the current row to just before the first row of the Table. If, however, an invalid Index has been specified, then it will not remove any column or reset the Table.

Returns an error message if an invalid Index has been specified.

Applies to