Skip to main content

CardViewCustomBindingGetDataArgs.StartDataCardIndex Property

Gets the index of the first row in the requested cards list.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public int StartDataCardIndex { get; protected set; }

Property Value

Type Description
Int32

An integer value representing the index of the first card in the requested card list to be returned.

Remarks

Use the StartDataCardIndex property to position on the first required data row within your model. Starting from this row, return the number of rows defined by the CardViewCustomBindingGetDataArgs.DataCardCount property as a card list to the CardViewCustomBindingDataArgsBase.Data property.

Refer to Implementation of Typed Method Delegates to learn more.

See Also