CoreWetStrokeUpdateSource.WetStrokeStarting Event

Definition

Occurs when the InkPresenter starts processing an ink stroke.

// Register
event_token WetStrokeStarting(TypedEventHandler<CoreWetStrokeUpdateSource, CoreWetStrokeUpdateEventArgs const&> const& handler) const;

// Revoke with event_token
void WetStrokeStarting(event_token const* cookie) const;

// Revoke with event_revoker
CoreWetStrokeUpdateSource::WetStrokeStarting_revoker WetStrokeStarting(auto_revoke_t, TypedEventHandler<CoreWetStrokeUpdateSource, CoreWetStrokeUpdateEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWetStrokeUpdateSource,CoreWetStrokeUpdateEventArgs> WetStrokeStarting;
function onWetStrokeStarting(eventArgs) { /* Your code */ }
coreWetStrokeUpdateSource.addEventListener("wetstrokestarting", onWetStrokeStarting);
coreWetStrokeUpdateSource.removeEventListener("wetstrokestarting", onWetStrokeStarting);
- or -
coreWetStrokeUpdateSource.onwetstrokestarting = onWetStrokeStarting;
Public Custom Event WetStrokeStarting As TypedEventHandler(Of CoreWetStrokeUpdateSource, CoreWetStrokeUpdateEventArgs) 

Event Type

Applies to

See also