SceneAnalysisEffect.SceneAnalyzed É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.
Déclenché lorsque l’analyse de la scène est terminée. Voir SceneAnalyzedEventArgs
// Register
event_token SceneAnalyzed(TypedEventHandler<SceneAnalysisEffect, SceneAnalyzedEventArgs const&> const& handler) const;
// Revoke with event_token
void SceneAnalyzed(event_token const* cookie) const;
// Revoke with event_revoker
SceneAnalysisEffect::SceneAnalyzed_revoker SceneAnalyzed(auto_revoke_t, TypedEventHandler<SceneAnalysisEffect, SceneAnalyzedEventArgs const&> const& handler) const;
public event TypedEventHandler<SceneAnalysisEffect,SceneAnalyzedEventArgs> SceneAnalyzed;
function onSceneAnalyzed(eventArgs) { /* Your code */ }
sceneAnalysisEffect.addEventListener("sceneanalyzed", onSceneAnalyzed);
sceneAnalysisEffect.removeEventListener("sceneanalyzed", onSceneAnalyzed);
- or -
sceneAnalysisEffect.onsceneanalyzed = onSceneAnalyzed;
Public Custom Event SceneAnalyzed As TypedEventHandler(Of SceneAnalysisEffect, SceneAnalyzedEventArgs)