CoreWetStrokeUpdateSource.WetStrokeContinuing É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.
Se produit après que inkPresenter commence à traiter un trait d’encre et avant qu’il cesse de traiter le même trait, indiquant que les données manuscrites continuent d’être capturées.
// Register
event_token WetStrokeContinuing(TypedEventHandler<CoreWetStrokeUpdateSource, CoreWetStrokeUpdateEventArgs const&> const& handler) const;
// Revoke with event_token
void WetStrokeContinuing(event_token const* cookie) const;
// Revoke with event_revoker
CoreWetStrokeUpdateSource::WetStrokeContinuing_revoker WetStrokeContinuing(auto_revoke_t, TypedEventHandler<CoreWetStrokeUpdateSource, CoreWetStrokeUpdateEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWetStrokeUpdateSource,CoreWetStrokeUpdateEventArgs> WetStrokeContinuing;
function onWetStrokeContinuing(eventArgs) { /* Your code */ }
coreWetStrokeUpdateSource.addEventListener("wetstrokecontinuing", onWetStrokeContinuing);
coreWetStrokeUpdateSource.removeEventListener("wetstrokecontinuing", onWetStrokeContinuing);
- or -
coreWetStrokeUpdateSource.onwetstrokecontinuing = onWetStrokeContinuing;
Public Custom Event WetStrokeContinuing As TypedEventHandler(Of CoreWetStrokeUpdateSource, CoreWetStrokeUpdateEventArgs)