Esempio n. 1
0
 internal GridUnboundColumnEventsArgs(UnBoundActions action, object value, GridColumn column, object record, object originalSource)
     : base(originalSource)
 {
     this.UnBoundAction = action;
     this.Value         = value;
     this.Column        = column;
     this.Record        = record;
 }
Esempio n. 2
0
 internal GridUnBoundRowEventsArgs(GridUnBoundRow GridUnBoundRow, UnBoundActions action, object value, GridColumn column, String cellType, object originalSource, RowColumnIndex rowColumnIndex)
     : base(originalSource)
 {
     this.GridUnboundRow = GridUnBoundRow;
     this.UnBoundAction  = action;
     this.Value          = value;
     this.Column         = column;
     this.CellType       = cellType;
     this.RowColumnIndex = rowColumnIndex;
     this.CellTemplate   = null;
     this.EditTemplate   = null;
 }