C1.Silverlight.DataGrid Namespace : DataGridRowCollection Class |
The following tables list the members exposed by DataGridRowCollection.
Name | Description | |
---|---|---|
![]() | BottomRows | Gets the collection of rows that are located at bottom of the item rows. |
![]() | Count | Gets the count of rows. |
![]() | IsLoading | Gets or sets a value indicating whether this instance is loading. |
![]() | Item | Overloaded. Gets the DataGridRow with the specified data item. |
![]() | OwnerGroup | Gets or sets the group that owns this collection of rows. If the collection doesn't belong to a group this property will be null. |
![]() | TopRows | Gets the collection of rows that are located on top of the item rows. |
Name | Description | |
---|---|---|
![]() | AsEnumerable | 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) |
![]() | Collapse | Collapse the groups that satisfy the predicate. |
![]() | CollapseAll | Collapses all the groups. |
![]() | Contains | Determines whether this collection contains a row in the specified index. |
![]() | Expand | Expands the groups that satisfy the predicate. |
![]() | ExpandAll | Expands all the groups. |
![]() | GetEnumerator | Returns an enumerator that iterates through the collection. |
![]() | GetFirstVisibleRow | Gets the first visible row. |
![]() | GetLastVisibleRow | Gets the last visible row. |
![]() | GetLoadedRows | Gets the loaded rows until now. |
![]() | GetVisibleRowsFromBottom | Gets a collection of rows starting from the bottom. |
![]() | GetVisibleRowsFromIndex | Gets a collection of rows from a specified position and direction. |
![]() | GetVisibleRowsFromTop | Gets a collection of rows starting from the top. |
![]() | IndexOf | Gets the index of the specified data item. |
Name | Description | |
---|---|---|
![]() | CollectionChanged | Occurs when the items list of the collection has changed, or the collection is reset. |