DetailsView.PageIndex Property

Definition

Gets or sets the index of the displayed record.

public:
 virtual property int PageIndex { int get(); void set(int value); };
[System.ComponentModel.Bindable(true)]
public virtual int PageIndex { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.PageIndex : int with get, set
Public Overridable Property PageIndex As Integer

Property Value

The zero-based index of the data item being displayed in a DetailsView control from the underlying data source.

Attributes

Exceptions

The selected value is less than -1.

Remarks

When the paging feature is enabled (when the AllowPaging property is set to true), use the PageIndex property to determine the index of the currently displayed record. You can also use this property to programmatically change the displayed record.

Note

When the paging feature is enabled, you can also use this property to determine the page number of the record displayed; however, be aware that this property is zero-based.

To determine the total number of items in the data source, use the PageCount property.

Applies to

See also