Example #1
0
            public AppendFeaTBRow AddAppendFeaTBRow(bool colChecked, string colDatasetName, string colAliasName, string colDataType)
            {
                AppendFeaTBRow rowAppendFeaTBRow = ((AppendFeaTBRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    colChecked,
                    colDatasetName,
                    colAliasName,
                    colDataType
                };
                rowAppendFeaTBRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowAppendFeaTBRow);
                return(rowAppendFeaTBRow);
            }
Example #2
0
 public AppendFeaTBRowChangeEvent(AppendFeaTBRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveAppendFeaTBRow(AppendFeaTBRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddAppendFeaTBRow(AppendFeaTBRow row)
 {
     this.Rows.Add(row);
 }