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


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

    Parameters

    range
    The fill range.
    series
    The fill direction.
    step
    The fill step 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 multiplying the current cell with the step value.
    See Also