Пример #1
0
 /// <summary>
 /// Creates a new instance of the <see cref="T:Dt.Cells.UndoRedo.DragFillExtent" /> class.
 /// </summary>
 /// <param name="startRange">The drag fill start range.</param>
 /// <param name="fillRange">The drag fill end range.</param>
 /// <param name="autoFillType">The <see cref="T:GrapeCity.Windows.SpreadSheet.UI.AutoFillType" /> indicates the fill type.</param>
 /// <param name="fillDirection">The drag fill direction.</param>
 public DragFillExtent(CellRange startRange, CellRange fillRange, Dt.Cells.Data.AutoFillType autoFillType, Dt.Cells.Data.FillDirection fillDirection)
 {
     _startRange    = startRange;
     _fillRange     = fillRange;
     _autoFillType  = autoFillType;
     _fillDirection = fillDirection;
 }
Пример #2
0
 internal DragFillBlockEventArgs(CellRange fillRange, Dt.Cells.Data.FillDirection fillDirection, Dt.Cells.Data.AutoFillType autoFillType, bool cancel) : this(fillRange, fillDirection, autoFillType)
 {
     base.Cancel = cancel;
 }
Пример #3
0
 internal DragFillBlockEventArgs(CellRange fillRange, Dt.Cells.Data.FillDirection fillDirection, Dt.Cells.Data.AutoFillType autoFillType)
 {
     FillRange     = fillRange;
     AutoFillType  = autoFillType;
     FillDirection = fillDirection;
 }