Version

GetAllNonGroupByRows() Method

Gets all the non-group-by rows that are associated with this collection.
Syntax
'Declaration
 
Public Function GetAllNonGroupByRows() As UltraGridRow()
public UltraGridRow[] GetAllNonGroupByRows()

Return Value

An array that contains the non-group-by rows (actual rows). The returned array is not held by the row collection.
Remarks

This method is useful in group-by mode where rows are grouped by columns and you want to get all the non-group-by rows. In group-by mode the root row collection contains the group-by rows. To access the actual non-group-by rows one has to recursively traverse the child rows (by using the UltraGridRow.ChildBands property or by typecasting the row into an UltraGridGroupByRow object and accessing it's UltraGridGroupByRow.Rows property). This method makes accessing all the non-group-by rows easier by returning an array that contains all non-group-by rows.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also