ItemPager.ItemCount Propriedade
Definição
Obtém a contagem de itens visíveis na página atual.Gets the count of items visible on the current page. Esta API está obsoleta.This API is obsolete. Para saber mais sobre como desenvolver aplicativos móveis ASP.NET, veja Mobile Apps & Sites with ASP.NET (Aplicativos móveis e sites com ASP.NET).For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
property int ItemCount { int get(); };
public int ItemCount { get; }
member this.ItemCount : int
Public ReadOnly Property ItemCount As Integer
Valor da propriedade
A contagem de itens visíveis na página atual.The count of items visible on the current page.
Comentários
Os controles móveis do ASP.NET que dão suporte à paginação interna também fornecem um recurso chamado paginação personalizada.ASP.NET mobile controls that support internal pagination also provide a feature called custom pagination. Normalmente, esses controles exigem que você forneça todos os dados que eles podem exibir.Normally, such controls require you to provide all the data that they can display. Os desenvolvedores especificam o número total de itens que estão na lista na ItemCount propriedade.Developers specify the total number of items that are in the list in the ItemCount property. A ItemsPerPage propriedade especifica quantos itens o controle exibe por página.The ItemsPerPage property specifies how many items the control displays per page.