Beispiel #1
0
 /// <summary>
 /// Sets the value for the row and column
 /// </summary>
 /// <param name="Index">Index.</param>
 /// <param name="CellName">Cell name.</param>
 /// <param name="value">Value.</param>
 public void SetValue(int Index, String CellName, object value)
 {
     if (Index != -1)
     {
         CurrentTable.SetValue(Index, CellName, value);
     }
 }