Deletion of Rows

Hi, I am using a gridcontrol for my application. I want to impelement deletion of multiple selected rows using a context menu. Which function call do i need to make in the click event handler of the menu item, so that i can delete the currently selected rows. I need to ask for user confirmation before performing deletion. Please help

1 Reply

AD Administrator Syncfusion Team December 28, 2004 11:39 PM UTC

You can try code like: Dim range As GridRangeInfo = grid.Selections.Ranges.ActiveRange grid.Rows.RemoveRange(range.Top, range.Bottom)

Loader.
Up arrow icon