Beispiel #1
0
            public TIMERow AddTIMERow(int index, string time_display, string time_store)
            {
                TIMERow rowTIMERow = ((TIMERow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    index,
                    time_display,
                    time_store
                };
                rowTIMERow.ItemArray = columnValuesArray;
                this.Rows.Add(rowTIMERow);
                return(rowTIMERow);
            }
Beispiel #2
0
 public void RemoveTIMERow(TIMERow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #3
0
 public void AddTIMERow(TIMERow row)
 {
     this.Rows.Add(row);
 }
Beispiel #4
0
 public TIMERowChangeEvent(TIMERow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }