ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / DataGridRowCollection Class / AsEnumerable Method
The predicate.
The recursion predicate. Where to process children rows in a group or not.

In This Topic
    AsEnumerable Method
    In This Topic
    Returns the row collection as IEnumerable. i.e. All rows that are not DataGridGroupRow: AsEnumerable((r) => !(r is DataGridGroupRow), null); i.e. All currently rows being shown (include group children of visible groups): AsEnumerable(null, (g) => g.GroupRowsVisibility == Visibility.Visible)
    Syntax

    Parameters

    predicate
    The predicate.
    recursionPredicate
    The recursion predicate. Where to process children rows in a group or not.
    See Also