RepeaterCommandEventArgs.Item Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient l'interface RepeaterItem associée à l'événement.
public:
property System::Web::UI::WebControls::RepeaterItem ^ Item { System::Web::UI::WebControls::RepeaterItem ^ get(); };
public System.Web.UI.WebControls.RepeaterItem Item { get; }
member this.Item : System.Web.UI.WebControls.RepeaterItem
Public ReadOnly Property Item As RepeaterItem
Valeur de propriété
RepeaterItem associé à l'événement.
Exemples
L’exemple suivant montre comment déterminer le numéro d’index de la Item propriété.
void R1_ItemCommand(Object Sender, RepeaterCommandEventArgs e) {
Label2.Text = "The index of the item is " + e.Item.ItemIndex.ToString();
}
Sub R1_ItemCommand(Sender As Object, e As RepeaterCommandEventArgs)
Label2.Text = "The index of the item is " & e.Item.ItemIndex.ToString()
End Sub
Remarques
Utilisez cette propriété pour accéder aux propriétés de l’événement RepeaterItem associé.