void gcMultiRow1_SelectionChanged(object sender, EventArgs e)
{
this.Text = "Selected cell count: " + this.gcMultiRow1.SelectedCells.Count;
this.Text += " Selected row count: " + this.gcMultiRow1.SelectedRows.Count;
}
Private Sub gcMultiRow1_SelectionChanged(ByVal sender As Object, ByVal e As EventArgs) Handles gcMultiRow1.SelectionChanged
Me.Text = "Selected cell count: " + Me.gcMultiRow1.SelectedCells.Count.ToString()
Me.Text += " Selected row count: " + Me.gcMultiRow1.SelectedRows.Count.ToString()
End Sub