GridDataBoundGrid grid = this.gridRecordNavigationControl1.ActivePane as GridDataBoundGrid;
Console.WriteLine(grid.CurrentCell.RowIndex.ToString() + " " + grid.CurrentCell.ColIndex.ToString());
Now if you are trying to access the currentcell as it is being moved, that might be a problem. Is that what you are doing?
private void gridRecordNavigationControl1_PaneClosing(object sender, Syncfusion.Windows.Forms.SplitterPaneEventArgs e) { this.gridRecordNavigationControl1.ActiveControl = null; }