public void RemoveFileTblRow(FileTblRow row) { this.Rows.Remove(row); }
public POFileTblRow AddPOFileTblRow(int POID, FileTblRow parentFileTblRowByFileTblPOFileTbl) { POFileTblRow rowPOFileTblRow = ((POFileTblRow)(this.NewRow())); object[] columnValuesArray = new object[] { POID, null}; if ((parentFileTblRowByFileTblPOFileTbl != null)) { columnValuesArray[1] = parentFileTblRowByFileTblPOFileTbl[0]; } rowPOFileTblRow.ItemArray = columnValuesArray; this.Rows.Add(rowPOFileTblRow); return rowPOFileTblRow; }
public void AddFileTblRow(FileTblRow row) { this.Rows.Add(row); }
public FileTblRowChangeEvent(FileTblRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }