GridViewCustomBindingGetDataArgs(GridViewModel, IList<GridViewGroupInfo>, Int32, Int32) Constructor
Initializes a new instance of the GridViewCustomBindingGetDataArgs class with the specified settings.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
public GridViewCustomBindingGetDataArgs(
GridViewModel state,
IList<GridViewGroupInfo> groupInfoList,
int startDataRowIndex,
int count
)
Parameters
Name | Type | Description |
---|---|---|
state | GridViewModel | A GridViewModel object that represents the current state of the GridView view model. |
groupInfoList | IList<GridViewGroupInfo> | A list of GridViewGroupInfo objects containing information about the currently applied grouping. |
startDataRowIndex | Int32 | An integer specifying the index of the starting data row. |
count | Int32 | An integer specifying the total count of data rows to be returned. |
See Also