public RSRow AddRSRow(string n, string a, TURow parentTURowByTU_RS) { RSRow rowRSRow = ((RSRow)(this.NewRow())); rowRSRow.ItemArray = new object[] { n, a, parentTURowByTU_RS[1] }; this.Rows.Add(rowRSRow); return(rowRSRow); }
public RSRowChangeEvent(RSRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveRSRow(RSRow row) { this.Rows.Remove(row); }
public void AddRSRow(RSRow row) { this.Rows.Add(row); }