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; }
internal CremaDataRowChangeEventArgs(DataRowChangeEventArgs e) { this.dataRow = e.Row as InternalDataRow; this.action = e.Action; }
internal CremaDataRow NewRow(InternalDataRow row) { this.internalRow = row; return(this.table.InvokeNewRowFromBuilder(this)); }