void gcMultiRow1_CellResizeCompleted(object sender, CellEventArgs e)
{
this.label.Text = "CellResizeCompleted:" + " CellScope=" + e.Scope +
" SectionIndex=" + e.SectionIndex + " CellIndex=" + e.CellIndex + " CellName=" + e.CellName;
}
Private Sub gcMultiRow1_CellResizeCompleted(ByVal sender As Object, ByVal e As CellEventArgs) Handles gcMultiRow1.CellResizeCompleted
Me.label.Text = "CellResizeCompleted:" + " CellScope=" + e.Scope.ToString() + " SectionIndex=" + e.SectionIndex.ToString() + " CellIndex=" + e.CellIndex.ToString() + " CellName=" + e.CellName.ToString()
End Sub