Spread Windows Forms 12.0 Product Documentation
RangeDragFillMode Property (SpreadView)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : RangeDragFillMode Property
Gets or sets the mode the user can use to drag and fill cells in the component using the contents of a cell or cells.
Syntax
'Declaration
 
Public Property RangeDragFillMode As DragFillMode
'Usage
 
Dim instance As SpreadView
Dim value As DragFillMode
 
instance.RangeDragFillMode = value
 
value = instance.RangeDragFillMode
public DragFillMode RangeDragFillMode {get; set;}
Remarks
The drag fill mode can be set to series or copy.
Example
This example sets the drag fill mode to series.
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook(); 
sv.AllowDragFill = true;
sv.RangeDragFillMode = FarPoint.Win.Spread.DragFillMode.Series;
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
sv.AllowDragFill = True
sv.RangeDragFillMode = FarPoint.Win.Spread.DragFillMode.Series
See Also

Reference

SpreadView Class
SpreadView Members