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;
 }
Esempio n. 3
0
 internal CremaTemplateNewColumnEventArgs(DataTableNewRowEventArgs e)
 {
     this.column = (e.Row as InternalTemplateColumn).Target;
 }
Esempio n. 4
0
 public CremaTemplateNewColumnEventArgs(CremaTemplateColumn column)
 {
     this.column = column;
 }
Esempio n. 5
0
 public void ImportColumn(CremaTemplateColumn column)
 {
     this.template.ImportRow((InternalTemplateColumn)column);
 }