Пример #1
0
 public TBL_FieldRowChangeEvent(TBL_FieldRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Пример #2
0
 public void RemoveTBL_FieldRow(TBL_FieldRow row) {
     this.Rows.Remove(row);
 }
Пример #3
0
 public TBL_RelationRow AddTBL_RelationRow(TBL_FieldRow parentTBL_FieldRowByFK_TBL_Field_TBL_Relation, string Relation_Name, string Table_Name, string Column_Name) {
     TBL_RelationRow rowTBL_RelationRow = ((TBL_RelationRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null,
             Relation_Name,
             Table_Name,
             Column_Name};
     if ((parentTBL_FieldRowByFK_TBL_Field_TBL_Relation != null)) {
         columnValuesArray[1] = parentTBL_FieldRowByFK_TBL_Field_TBL_Relation[0];
     }
     rowTBL_RelationRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowTBL_RelationRow);
     return rowTBL_RelationRow;
 }
Пример #4
0
 public void AddTBL_FieldRow(TBL_FieldRow row) {
     this.Rows.Add(row);
 }