FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGridBase Class / Subtotal Method / Subtotal(AggregateEnum,Int32,String,String,String) Method
AggregateEnum value that specifies the type of aggregate to calculate.
Outline level to assign to the new subtotal rows. This parameter allows the creation of multi-level subtotals and affects the display of the outline tree.
Name column used to detect group breaks.
Name of the column that contains values to be aggregated (usually numeric).
Text to insert in the subtotal rows.

In This Topic
    Subtotal(AggregateEnum,Int32,String,String,String) Method
    In This Topic
    Groups rows based on cell contents and calculates aggregate values.
    Syntax
    'Declaration
     
    
    Public Overloads Sub Subtotal( _
       ByVal aggType As AggregateEnum, _
       ByVal level As Integer, _
       ByVal groupOn As String, _
       ByVal totalOn As String, _
       ByVal caption As String _
    ) 

    Parameters

    aggType
    AggregateEnum value that specifies the type of aggregate to calculate.
    level
    Outline level to assign to the new subtotal rows. This parameter allows the creation of multi-level subtotals and affects the display of the outline tree.
    groupOn
    Name column used to detect group breaks.
    totalOn
    Name of the column that contains values to be aggregated (usually numeric).
    caption
    Text to insert in the subtotal rows.
    Remarks
    This is a variant of the Subtotal(AggregateEnum,Int32,Int32,Int32,String) method that takes column names instead of indices.
    See Also