예제 #1
0
 public void RemoveFileTblRow(FileTblRow row) {
     this.Rows.Remove(row);
 }
예제 #2
0
 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;
 }
예제 #3
0
 public void AddFileTblRow(FileTblRow row) {
     this.Rows.Add(row);
 }
예제 #4
0
 public FileTblRowChangeEvent(FileTblRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }