Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / FillLinear Method / FillLinear(CellRange,FillSeries,Double,Double) Method
The fill range.
The fill direction.
The fill step value.
The fill stop value.


In This Topic
    FillLinear(CellRange,FillSeries,Double,Double) Method
    In This Topic
    Fills the specified range when the source value type is number.
    Syntax
    'Declaration
     
    Public Overloads Sub FillLinear( _
       ByVal range As CellRange, _
       ByVal series As FillSeries, _
       ByVal step As Double, _
       ByVal stop As Double _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim range As CellRange
    Dim series As FillSeries
    Dim step As Double
    Dim stop As Double
     
    instance.FillLinear(range, series, step, stop)
    public void FillLinear( 
       CellRange range,
       FillSeries series,
       double step,
       double stop
    )

    Parameters

    range
    The fill range.
    series
    The fill direction.
    step
    The fill step value.
    stop
    The fill stop value.
    Exceptions
    ExceptionDescription
    The range cannot be null.
    Remarks
    The next value is generated by the step and stop values. The next value is computed by adding the step value to the current cell value.
    See Also