internal CremaTemplateColumnChangeEventArgs(DataColumnChangeEventArgs e) { this.item = (e.Row as InternalTemplateColumn).Target; this.action = DataRowAction.Nothing; this.propertyName = e.Column.ColumnName; this.proposedValue = e.ProposedValue; }
internal CremaTemplateColumnChangeEventArgs(DataRowChangeEventArgs e) { this.item = (e.Row as InternalTemplateColumn).Target; this.action = e.Action; }
internal CremaTemplateNewColumnEventArgs(DataTableNewRowEventArgs e) { this.column = (e.Row as InternalTemplateColumn).Target; }
public CremaTemplateNewColumnEventArgs(CremaTemplateColumn column) { this.column = column; }
public void ImportColumn(CremaTemplateColumn column) { this.template.ImportRow((InternalTemplateColumn)column); }