Spread WPF 17
GrapeCity.CalcEngine Namespace / CalcReference Class / IsSubtotal Method
The range index.
The row offset.
The column offset.


In This Topic
    IsSubtotal Method
    In This Topic
    Determines whether the specified range is subtotal.
    Syntax
    'Declaration
     
    Public MustOverride Function IsSubtotal( _
       ByVal range As Integer, _
       ByVal rowOffset As Integer, _
       ByVal columnOffset As Integer _
    ) As Boolean
    'Usage
     
    Dim instance As CalcReference
    Dim range As Integer
    Dim rowOffset As Integer
    Dim columnOffset As Integer
    Dim value As Boolean
     
    value = instance.IsSubtotal(range, rowOffset, columnOffset)
    public abstract bool IsSubtotal( 
       int range,
       int rowOffset,
       int columnOffset
    )

    Parameters

    range
    The range index.
    rowOffset
    The row offset.
    columnOffset
    The column offset.

    Return Value

    true if the specified range is subtotal; otherwise, false.
    See Also