Version

Rows Property (BeforeCustomRowFilterDialogEventArgs)

Returns null if the UltraGridOverride.RowFilterMode resolves to AllRowsInBand otherwise it returns the rows collection that's being filtered.
Syntax
'Declaration
 
Public ReadOnly Property Rows As RowsCollection
public RowsCollection Rows {get;}
Remarks

There are two row filtering modes: SiblingRowsOnly and AllRowsInBand. When it's AllRowsInBand all the rows in a band are being filtered and thus there is no particular rows collection that's being filtered. As a result this property returns null. However if the row filter mode is SiblingRowsOnly where rows of a particular rows collection are being filtered, then this property will return that rows collection.

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