DataRepeater.DisplayedItemCount, propriété
Obtient le nombre d'éléments d'DataRepeaterItem qui sont visibles dans un contrôle d'DataRepeater, éventuellement y compris les éléments partiellement affichés.
Espace de noms : Microsoft.VisualBasic.PowerPacks
Assembly : Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntaxe
'Déclaration
<BrowsableAttribute(False)> _
Public ReadOnly Property DisplayedItemCount ( _
includePartialItems As Boolean _
) As Integer
[BrowsableAttribute(false)]
public int this[
bool includePartialItems
] { get; }
[BrowsableAttribute(false)]
public:
property int DisplayedItemCount[bool includePartialItems] {
int get (bool includePartialItems);
}
[<BrowsableAttribute(false)>]
member DisplayedItemCount : int
JScript ne prend pas en charge les propriétés indexées.
Paramètres
- includePartialItems
Type : System.Boolean
true à comprendre a partiellement affiché des éléments dans le nombre ; false pour comprendre uniquement les éléments entièrement affichés.
Valeur de propriété
Type : System.Int32
Le nombre d'éléments affichés.
Notes
Utilisez cette propriété pour déterminer le nombre d'éléments d'DataRepeaterItem sont visibles dans un contrôle d'DataRepeater.
Exemples
L'exemple suivant montre comment retourner le nombre d'éléments affichés dans un contrôle d'DataRepeater.
Private Sub Button1_Click() Handles Button1.Click
Dim msgString As String
Dim intFull As Integer
Dim intPartial As Integer
' Get the count without including partially displayed items.
intFull = DataRepeater1.DisplayedItemCount(False)
' Get the count, including partially displayed items.
intPartial = DataRepeater1.DisplayedItemCount(True)
' Create the message string.
msgString = CStr(intFull)
msgString &= " items are fully visible and "
' Subtract the full count from the partial count.
msgString &= CStr(intPartial - intFull)
msgString &= " items are partially visible."
MsgBox(msgString)
End Sub
private void button1_Click(System.Object sender, System.EventArgs e)
{
string msgString;
int intFull;
int intPartial;
string stringFull;
string stringPartial;
// Get the count without including partially displayed items.
intFull = dataRepeater1.get_DisplayedItemCount(false);
// Get the count, including partially displayed items.
intPartial = dataRepeater1.get_DisplayedItemCount(true);
// Create the message string.
stringFull = intFull.ToString();
msgString = stringFull;
msgString = msgString + " items are fully visible and ";
// Subtract the full count from the partial count.
intPartial = intPartial - intFull;
stringPartial = intPartial.ToString();
msgString = msgString + stringPartial;
msgString = msgString + " items are partially visible.";
MessageBox.Show(msgString);
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.VisualBasic.PowerPacks, espace de noms