Beispiel #1
0
 public CremaDataRow(CremaDataRowBuilder builder)
 {
     if (builder == null)
     {
         throw new ArgumentNullException();
     }
     this.row = builder.DataRow;
 }
 internal CremaDataColumnChangeEventArgs(DataColumnChangeEventArgs e)
 {
     this.dataRow       = e.Row as InternalDataRow;
     this.dataColumn    = e.Column as InternalDataColumn;
     this.proposedValue = e.ProposedValue;
 }
Beispiel #3
0
 internal CremaDataRowChangeEventArgs(DataRowChangeEventArgs e)
 {
     this.dataRow = e.Row as InternalDataRow;
     this.action  = e.Action;
 }
Beispiel #4
0
 internal CremaDataRow NewRow(InternalDataRow row)
 {
     this.internalRow = row;
     return(this.table.InvokeNewRowFromBuilder(this));
 }