public specRow AddspecRow(string type, string path, string direction, specsRow parentspecsRowByspecs_spec) { specRow rowspecRow = ((specRow)(this.NewRow())); rowspecRow.ItemArray = new object[] { type, path, direction, null, parentspecsRowByspecs_spec[0]}; this.Rows.Add(rowspecRow); return rowspecRow; }
public void RemovespecsRow(specsRow row) { this.Rows.Remove(row); }
public specsRowChangeEvent(specsRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void AddspecsRow(specsRow row) { this.Rows.Add(row); }