Example #1
0
 internal CremaDataColumnChangeEventArgs(DataColumnChangeEventArgs e)
 {
     this.dataRow       = e.Row as InternalDataRow;
     this.dataColumn    = e.Column as InternalDataColumn;
     this.ProposedValue = e.ProposedValue;
 }
Example #2
0
 internal CremaDataRowChangeEventArgs(DataRowChangeEventArgs e)
 {
     this.dataRow = e.Row as InternalDataRow;
     this.Action  = e.Action;
 }
 internal CremaDataRow NewRow(InternalDataRow row)
 {
     this.DataRow = row;
     return(this.table.InvokeNewRowFromBuilder(this));
 }