PagedControl.ItemCount Property

Definition

Gets or sets the count of items in the control. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

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

Property Value

The count of items in the control.

Attributes

Remarks

Custom pagination must be enabled. The default is 0, indicating that you cannot use custom paging.

The units used for an item depend on the control. For example, a List control might use list items as units, whereas a TextView control might use characters.

Applies to

See also