Spread WPF 17
GrapeCity.CalcEngine Namespace / CalcConvert Class / ToEnumeratorExcludingSubtotals Method
The value.


In This Topic
    ToEnumeratorExcludingSubtotals Method
    In This Topic
    Get an enumerator to iterate items in value with excluding subtotals item.
    Syntax
    'Declaration
     
    Public Shared Function ToEnumeratorExcludingSubtotals( _
       ByVal value As Object _
    ) As IEnumerator
    'Usage
     
    Dim value As Object
    Dim value As IEnumerator
     
    value = CalcConvert.ToEnumeratorExcludingSubtotals(value)
    public static IEnumerator ToEnumeratorExcludingSubtotals( 
       object value
    )

    Parameters

    value
    The value.

    Return Value

    An System.Collections.IEnumerator indicate the iterator.
    Remarks
    If value is CalcArray, it would iterate from each columns to rows. If value is CalcReference, it would iterate all sub-area from each columns to rows. Any others, iterate the value as an enumerator.
    See Also