This documentation is archived and is not being maintained.

InkOverlay.TabletRemoved Event

Occurs when a Tablet object is removed from the system.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

'Declaration
Public Event TabletRemoved As InkCollectorTabletRemovedEventHandler
'Usage
Dim instance As InkOverlay 
Dim handler As InkCollectorTabletRemovedEventHandler 

AddHandler instance.TabletRemoved, handler

The event handler receives an argument of type InkCollectorTabletRemovedEventArgs containing data about this event.

When you create an InkCollectorTabletRemovedEventHandler delegate, you identify the method that handles the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For performance reasons, the default event interest is off but is turned on automatically if you add an event handler.

The event handler in this example activates special application features only available to 3D digitizers if each Tablet object in the Tablets collection supports the PitchRotation property.

Private Sub Event_OnTabletRemoved(ByVal sender As Object, ByVal e As InkCollectorTabletRemovedEventArgs)
    Me.Is3DActive = New Tablets().IsPacketPropertySupported(PacketProperty.PitchRotation)
End Sub

At startup, the InkOverlay object, mInkOverlay registers the event handlers.

' register the TabletAdded and TabletRemoved event handlers 
AddHandler mInkOverlay.TabletAdded, New InkCollectorTabletAddedEventHandler(AddressOf Event_OnTabletAdded)
AddHandler mInkOverlay.TabletRemoved, New InkCollectorTabletRemovedEventHandler(AddressOf Event_OnTabletRemoved)

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.0
Show: