Home › Forums › WinForms controls › Xceed Grid for WinForms › get Current Row number › Reply To: get Current Row number
I can’t find a ColumnChanging event on the GridControl. I can find one on the DataTable class. If it’s that one you mean, you can get the DataRow from the DataColumnChangingEventArgs argument that is passed to the event handler. To get the row number, use <b>table.Rows.IndexOf(e.Row)</b>.
Imported from legacy forums. Posted by Tommy (had 3046 views)