Beispiel #1
0
 public tvRowChangeEvent(tvRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Beispiel #2
0
 public programmeRow AddprogrammeRow(string start, string date, string stop, string showview, string channel, tvRow parenttvRowBytv_programme) {
     programmeRow rowprogrammeRow = ((programmeRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             start,
             date,
             stop,
             showview,
             channel,
             null,
             null};
     if ((parenttvRowBytv_programme != null)) {
         columnValuesArray[6] = parenttvRowBytv_programme[4];
     }
     rowprogrammeRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowprogrammeRow);
     return rowprogrammeRow;
 }
Beispiel #3
0
 public void RemovetvRow(tvRow row) {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public channelRow AddchannelRow(string id, tvRow parenttvRowBytv_channel) {
     channelRow rowchannelRow = ((channelRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             id,
             null,
             null};
     if ((parenttvRowBytv_channel != null)) {
         columnValuesArray[2] = parenttvRowBytv_channel[4];
     }
     rowchannelRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowchannelRow);
     return rowchannelRow;
 }
Beispiel #5
0
 public void AddtvRow(tvRow row) {
     this.Rows.Add(row);
 }