Condividi tramite


CoreWetStrokeUpdateSource.WetStrokeContinuing Evento

Definizione

Si verifica dopo che InkPresenter avvia l'elaborazione di un tratto input penna e prima di arrestare l'elaborazione dello stesso tratto, a indicare che i dati input penna continuano a essere acquisiti.

// 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) 

Tipo evento

Si applica a

Vedi anche