DataRow deletion

Is there any method/property to explicitly delete rows of the DataTable which is bound to a DataSource?

1 Reply

AD Administrator Syncfusion Team February 10, 2004 07:51 AM UTC

You can call DataTable.Rows.Remove or RemoveAt methods. //remove row 3 from the datatable this.childTable.Rows.RemoveAt(2);

Loader.
Up arrow icon