Example #1
0
            public DATERow AddDATERow(int index, string date_display, string date_store)
            {
                DATERow rowDATERow = ((DATERow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    index,
                    date_display,
                    date_store
                };
                rowDATERow.ItemArray = columnValuesArray;
                this.Rows.Add(rowDATERow);
                return(rowDATERow);
            }
Example #2
0
 public void RemoveDATERow(DATERow row)
 {
     this.Rows.Remove(row);
 }
Example #3
0
 public void AddDATERow(DATERow row)
 {
     this.Rows.Add(row);
 }
Example #4
0
 public DATERowChangeEvent(DATERow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }