Pivot.PivotItemLoading Événement
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.
Événement permettant de charger ou de modifier dynamiquement le contenu d’un élément de tableau croisé dynamique avant son affichage.
// Register
event_token PivotItemLoading(TypedEventHandler<Pivot, PivotItemEventArgs const&> const& handler) const;
// Revoke with event_token
void PivotItemLoading(event_token const* cookie) const;
// Revoke with event_revoker
Pivot::PivotItemLoading_revoker PivotItemLoading(auto_revoke_t, TypedEventHandler<Pivot, PivotItemEventArgs const&> const& handler) const;
public event TypedEventHandler<Pivot,PivotItemEventArgs> PivotItemLoading;
function onPivotItemLoading(eventArgs) { /* Your code */ }
pivot.addEventListener("pivotitemloading", onPivotItemLoading);
pivot.removeEventListener("pivotitemloading", onPivotItemLoading);
- or -
pivot.onpivotitemloading = onPivotItemLoading;
Public Custom Event PivotItemLoading As TypedEventHandler(Of Pivot, PivotItemEventArgs)
<Pivot PivotItemLoading="eventhandler" />