Skip to main content

VerticalGridCustomBindingGetDataArgs.StartDataColumnIndex Property

Gets the index of the first column in the requested column list.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public int StartDataColumnIndex { get; protected set; }

Property Value

Type Description
Int32

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

Remarks

Use the StartDataColumnIndex property to position on the first required data column within your model. Starting from this column, return the number of columns defined by the VerticalGridCustomBindingGetDataArgs.DataColumnCount property as a column list to the VerticalGridCustomBindingDataArgsBase.Data property.

Refer to Implementation of Typed Method Delegates to learn more.

See Also