_Columns.Remove Method
Removes the Column object specified by Index and resets the Table.
Namespace: Microsoft.Office.Interop.Outlook
Assembly: Microsoft.Office.Interop.Outlook (in Microsoft.Office.Interop.Outlook.dll)
Syntax
'Declaration
<DispIdAttribute()> _
Sub Remove ( _
Index As Object _
)
'Usage
Dim instance As _Columns
Dim Index As Object
instance.Remove(Index)
[DispIdAttribute()]
void Remove(
Object Index
)
Parameters
Index
Type: System.ObjectA 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.