CoreWetStrokeUpdateSource.WetStrokeStarting Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)