BindingManagerBase::RemoveAt Method (Int32)

 

When overridden in a derived class, deletes the row at the specified index from the underlying list.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
virtual void RemoveAt(
	int index
) abstract

Parameters

index
Type: System::Int32

The index of the row to delete.

Exception Condition
IndexOutOfRangeException

There is no row at the specified index.

The RemoveAt method relies on the underlying data source to determine how the method behaves. (See the Binding class for a list of supported data sources.) For classes that implement IList, IBindingList, or ITypedList, as well as strongly typed classes that implement IList, the RemoveAt method actually deletes the row in the underlying list instead of removing its contents.

If the underlying list implements the IBindingList interface, the AllowRemove property must return true. If the underlying list implements the IList interface, the IsFixedSize property must return false.

void button1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   try
   {
      // Get the 'BindingManagerBase' Object*.
      BindingManagerBase^ myBindingManagerBase = BindingContext[ myDataTable ];

      // Remove the selected row from the grid.
      myBindingManagerBase->RemoveAt( myBindingManagerBase->Position );
   }
   catch ( Exception^ ex ) 
   {
      MessageBox::Show( ex->Source );
      MessageBox::Show( ex->Message );
   }
}

.NET Framework
Available since 1.1
Return to top
Show: