InkPicture.OnTabletAdded Method
InkPicture.OnTabletAdded Method |
Allows derived classes to modify the default behavior of the TabletAdded event.
Definition
Visual Basic .NET Overridable Protected Sub OnTabletAdded( _
ByVal e As InkCollectorTabletAddedEventArgs _
)C# protected virtual void OnTabletAdded(
InkCollectorTabletAddedEventArgs e
);Managed C++ protected: virtual void OnTabletAdded(
InkCollectorTabletAddedEventArgs *e
);
Parameters
e Microsoft.Ink.InkCollectorTabletAddedEventArgs. The InkCollectorTabletAddedEventArgs 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 TabletAdded event.
When overriding this method in a derived class, call the OnTabletAdded method of the base class so that registered delegates receive the event.
See Also