Version

DataResolution Event

Event raised when the sorting, paging, filtering and groupby is executed.
Syntax
'Declaration
 
Public Event DataResolution As EventHandler(Of DataLimitingEventArgs)
public event EventHandler<DataLimitingEventArgs> DataResolution
Event Data

The event handler receives an argument of type DataLimitingEventArgs containing data related to this event. The following DataLimitingEventArgs properties provide information specific to this event.

PropertyDescription
ColumnLayout Gets the ColumnLayout which the object would be created under.
CurrentPage Gets the current page index
CurrentSort Gets a collection Infragistics.SortContext which will be applied.
DataSource Gets / sets the IList that will be applied to the data manager.
EnablePaging Gets if the DataManager expects paged data.
Filters Gets a collection that lists what filters will be applied.
GroupByContext Gets the GroupBy that will be applied to the data.
PageSize Gets the maximum number of rows expected by the DataManager.
ParentRow Gets the Row object which is the parent for this object.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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