// // Sweep // public static void sweep(DGVSyncedGrid g) { if (g != null) { g.ea.clearEvents(); } }
public DGVSyncedSelectedCell(DGVSyncedGrid g, DataGridViewCell c) { this.g = g; this.c = c; // Column Index this.columnIndex = c.ColumnIndex; // Row index this.rowIndex = this.g.rowSource(c.RowIndex); }