Example #1
0
 public creditsRowChangeEvent(creditsRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Example #2
0
 public actorRow AddactorRow(string actor_Text, creditsRow parentcreditsRowBycredits_actor) {
     actorRow rowactorRow = ((actorRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             actor_Text,
             null};
     if ((parentcreditsRowBycredits_actor != null)) {
         columnValuesArray[1] = parentcreditsRowBycredits_actor[0];
     }
     rowactorRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowactorRow);
     return rowactorRow;
 }
Example #3
0
 public guestRow AddguestRow(string guest_Text, creditsRow parentcreditsRowBycredits_guest) {
     guestRow rowguestRow = ((guestRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             guest_Text,
             null};
     if ((parentcreditsRowBycredits_guest != null)) {
         columnValuesArray[1] = parentcreditsRowBycredits_guest[0];
     }
     rowguestRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowguestRow);
     return rowguestRow;
 }
Example #4
0
 public presenterRow AddpresenterRow(string presenter_Text, creditsRow parentcreditsRowBycredits_presenter) {
     presenterRow rowpresenterRow = ((presenterRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             presenter_Text,
             null};
     if ((parentcreditsRowBycredits_presenter != null)) {
         columnValuesArray[1] = parentcreditsRowBycredits_presenter[0];
     }
     rowpresenterRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowpresenterRow);
     return rowpresenterRow;
 }
Example #5
0
 public void RemovecreditsRow(creditsRow row) {
     this.Rows.Remove(row);
 }
Example #6
0
 public void AddcreditsRow(creditsRow row) {
     this.Rows.Add(row);
 }