ComponentOne FlexGrid for WinForms
Selected Property (RowCollection)
Example 

C1.Win.C1FlexGrid Namespace > RowCollection Class : Selected Property
Gets a collection of Row objects that are currently selected.
Syntax
'Declaration
 
Public ReadOnly Property Selected As RowCollection
public RowCollection Selected {get;}
Remarks
This property is especially useful when the grid's SelectionMode property is set to SelectionModeEnum.ListBox.
Example

The code below removes all selected rows from the grid.

Note that foreach loops can't be used to modify the collections being iterated over. This example works because the Selected collection is being enumerated while the Rows collection is being modified.

// delete all selected rows
foreach (Row r in _flex.Rows.Selected)
{
    _flex.Rows.Remove(r);
}
See Also

Reference

RowCollection Class
RowCollection Members