예제 #1
0
 internal static void SetRowValue(ref DataGridViewRow row, WUCollums wuCollum, Object obj)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Value = obj;
     }
     catch { }
 }
예제 #2
0
 internal static void SetRowStyleForeColor(ref DataGridViewRow row, WUCollums wuCollum, Color color)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Style.ForeColor = color;
     }
     catch { }
 }
예제 #3
0
 internal static void SetRowStyleFont(ref DataGridViewRow row, WUCollums wuCollum, Font font)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Style.Font = font;
     }
     catch { }
 }
예제 #4
0
 internal static void SetRowValue(ref DataGridViewRow row, WUCollums wuCollum, Object obj)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Value = obj;
     }
     catch { }
 }
예제 #5
0
 internal static void SetRowStyleForeColor(ref DataGridViewRow row, WUCollums wuCollum, Color color)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Style.ForeColor = color;
     }
     catch { }
 }
예제 #6
0
 internal static void SetRowStyleFont(ref DataGridViewRow row, WUCollums wuCollum, Font font)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Style.Font = font;
     }
     catch { }
 }
예제 #7
0
 internal static Object GetRowValue(ref DataGridViewRow row, WUCollums wuCollum)
 {
     try
     {
         return(row.Cells[wuCollum.ToString()].Value);
     }
     catch
     {
         return("row not found");
     }
 }