public creditsRowChangeEvent(creditsRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
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; }
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; }
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; }
public void RemovecreditsRow(creditsRow row) { this.Rows.Remove(row); }
public void AddcreditsRow(creditsRow row) { this.Rows.Add(row); }