Example #1
0
			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;
			}
Example #2
0
			public void RemovespecsRow(specsRow row) {
				this.Rows.Remove(row);
			}
Example #3
0
			public specsRowChangeEvent(specsRow row, DataRowAction action) {
				this.eventRow = row;
				this.eventAction = action;
			}
Example #4
0
			public void AddspecsRow(specsRow row) {
				this.Rows.Add(row);
			}