internal static void SetRowValue(ref DataGridViewRow row, WUCollums wuCollum, Object obj) { try { row.Cells[wuCollum.ToString()].Value = obj; } catch { } }
internal static void SetRowStyleForeColor(ref DataGridViewRow row, WUCollums wuCollum, Color color) { try { row.Cells[wuCollum.ToString()].Style.ForeColor = color; } catch { } }
internal static void SetRowStyleFont(ref DataGridViewRow row, WUCollums wuCollum, Font font) { try { row.Cells[wuCollum.ToString()].Style.Font = font; } catch { } }
internal static Object GetRowValue(ref DataGridViewRow row, WUCollums wuCollum) { try { return(row.Cells[wuCollum.ToString()].Value); } catch { return("row not found"); } }