Skip to main content

VerticalGridCustomBindingGetDataArgs.DataColumnCount Property

Gets the number of currently requested data columns to return.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public int DataColumnCount { get; protected set; }

Property Value

Type Description
Int32

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

Remarks

Use the DataColumnCount property to obtain the number of currently requested data columns to return. Obtain the specified number of data rows from your model and return the resulting list of rows to the VerticalGridCustomBindingDataArgsBase.Data property.

Refer to Implementation of Typed Method Delegates to learn more.

See Also