Пример #1
0
 public static void SetRowValue(ref DataGridViewRow row, EColumns col, string obj)
 {
     try
     {
         row.Cells[col.ToString()].Value = obj;
     }
     catch { }
 }
Пример #2
0
 public DataGridViewCell Cell(EColumns column, int oprIndex, DataGridView grid)
 {
     return(grid.Rows[oprIndex].Cells[(int)column]);
 }