DataSourceSelectArguments.StartRowIndex 属性

定义

获取或设置一个值,该值表示在数据检索操作过程中,检索数据行时数据源控件应使用的起始位置。

public:
 property int StartRowIndex { int get(); void set(int value); };
public int StartRowIndex { get; set; }
member this.StartRowIndex : int with get, set
Public Property StartRowIndex As Integer

属性值

数据源控件检索数据的起始行位置。 默认值为 0,指示起始位置为结果集的开始处。

注解

属性 StartRowIndex 支持分页方案。 数据绑定控件在运行时检查数据源视图的 CanPage 属性,如果视图支持分页,则使用 AddSupportedCapabilities(DataSourceCapabilities) 方法添加DataSourceCapabilities.Page功能。 如果数据绑定控件无法添加该功能,并且对在数据检索操作期间传递给数据源视图的对象设置了 DataSourceSelectArguments 分页属性, InvalidOperationException 则可能引发异常。

作为单独的操作,数据绑定控件可以通过设置StartRowIndex传递给 DataSourceView.Select(DataSourceSelectArguments, DataSourceViewSelectCallback) 方法的 对象的 和 MaximumRows 属性DataSourceSelectArguments,从数据源控件请求数据子集。

适用于

另请参阅