InkOverlay.OnNewInAirPackets Method

InkOverlay.OnNewInAirPackets Method

Allows derived classes to modify the default behavior of the NewInAirPackets event.

Definition

Visual Basic .NET Overridable Protected Sub OnNewInAirPackets( _
ByVal e As InkCollectorNewInAirPacketsEventArgs _
)
C# protected virtual void OnNewInAirPackets(
InkCollectorNewInAirPacketsEventArgs e
);
Managed C++ protected: virtual void OnNewInAirPackets(
InkCollectorNewInAirPacketsEventArgs *e
);

Parameters

e Microsoft.Ink.InkCollectorNewInAirPacketsEventArgs. The InkCollectorNewInAirPacketsEventArgs object that contains the event data.

Remarks

Raising an event invokes the event handler through a delegate.

In derived classes, this method is called only if a delegate is attached to the NewInAirPackets event.

When overriding this method in a derived class, call the OnNewInAirPackets method of the base class so that registered delegates receive the event.

See Also