Skip to main content

GridViewCustomBindingGetDataArgs.DataRowCount Property

Gets the number of currently requested data rows to return.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public int DataRowCount { get; protected set; }

Property Value

Type Description
Int32

An integer value specifying the number of currently requested data rows to return.

Remarks

Use the DataRowCount property to obtain the number of currently requested data rows to return. Depending upon the processed operation and the applied grouping, this number might relate to rows of the current page or visible rows of the processed group. Obtain the specified number of data rows from your model and return the resulting list of rows to the GridViewCustomBindingDataArgsBase.Data property.

Refer to Implementation of Typed Method Delegates to learn more.

The following code snippets (auto-collected from DevExpress Examples) contain references to the DataRowCount property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also