Skip to main content
A newer version of this page is available. .

GridViewCustomBindingGetDataRowCountHandler Delegate

A delegate method that enables you to return the total number of data rows within your model, when implementing custom data binding of the GridView.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v18.2.dll

Declaration

public delegate void GridViewCustomBindingGetDataRowCountHandler(
    GridViewCustomBindingGetDataRowCountArgs e
);

Parameters

Name Type Description
e GridViewCustomBindingGetDataRowCountArgs

An GridViewCustomBindingGetDataRowCountArgs object that contains the related arguments.

Remarks

Refer to Implementation of Typed Method Delegates to learn more.

See Also