ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / DataGridRowCollection Class
Properties Methods Events


In This Topic
    DataGridRowCollection Class Members
    In This Topic

    The following tables list the members exposed by DataGridRowCollection.

    Public Properties
     NameDescription
    Public PropertyGets the collection of rows that are located at bottom of the item rows.  
    Public PropertyGets the count of rows.  
    Public PropertyGets or sets a value indicating whether this instance is loading.  
    Public PropertyOverloaded. Gets the DataGridRow with the specified data item.  
    Public PropertyGets or sets the group that owns this collection of rows. If the collection doesn't belong to a group this property will be null.  
    Public PropertyGets the collection of rows that are located on top of the item rows.  
    Top
    Public Methods
     NameDescription
    Public MethodReturns 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)  
    Public MethodCollapse the groups that satisfy the predicate.  
    Public MethodCollapses all the groups.  
    Public MethodDetermines whether this collection contains a row in the specified index.  
    Public MethodExpands the groups that satisfy the predicate.  
    Public MethodExpands all the groups.  
    Public MethodReturns an enumerator that iterates through the collection.  
    Public MethodGets the first visible row.  
    Public MethodGets the last visible row.  
    Public MethodGets the loaded rows until now.  
    Public MethodGets a collection of rows starting from the bottom.  
    Public MethodGets a collection of rows from a specified position and direction.  
    Public MethodGets a collection of rows starting from the top.  
    Public MethodGets the index of the specified data item.  
    Top
    Public Events
     NameDescription
    Public EventOccurs when the items list of the collection has changed, or the collection is reset.  
    Top
    See Also