_Columns.Remove(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.