Поделиться через


InkCollector.TabletRemoved - событие

Обновлен: Ноябрь 2007

Occurs when a Tablet object is removed from the system.

Пространство имен:  Microsoft.Ink
Сборка:  Microsoft.Ink (в Microsoft.Ink.dll)

Синтаксис

'Декларация
Public Event TabletRemoved As InkCollectorTabletRemovedEventHandler
'Применение
Dim instance As InkCollector
Dim handler As InkCollectorTabletRemovedEventHandler

AddHandler instance.TabletRemoved, handler
public event InkCollectorTabletRemovedEventHandler TabletRemoved
public:
 event InkCollectorTabletRemovedEventHandler^ TabletRemoved {
    void add (InkCollectorTabletRemovedEventHandler^ value);
    void remove (InkCollectorTabletRemovedEventHandler^ value);
}
/** @event */
public void add_TabletRemoved (InkCollectorTabletRemovedEventHandler value)
/** @event */
public void remove_TabletRemoved (InkCollectorTabletRemovedEventHandler value)
JScript не поддерживает события.

Заметки

The event handler receives an argument of type InkCollectorTabletRemovedEventArgs that contains 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_OnTabletAdded(ByVal sender As Object, ByVal e As InkCollectorTabletAddedEventArgs)
    Me.Is3DActive = New Tablets().IsPacketPropertySupported(PacketProperty.PitchRotation)
End Sub
private void Event_OnTabletAdded(object sender, InkCollectorTabletAddedEventArgs e)
{
    this.Is3DActive = new Tablets().IsPacketPropertySupported(PacketProperty.PitchRotation);
}

At startup, the InkCollector object, mInkCollector registers the event handlers.

' register the TabletAdded and TabletRemoved event handlers
AddHandler mInkCollector.TabletAdded, New InkCollectorTabletAddedEventHandler(AddressOf Event_OnTabletAdded)
AddHandler mInkCollector.TabletRemoved, New InkCollectorTabletRemovedEventHandler(AddressOf Event_OnTabletRemoved)
// register the TabletAdded and TabletRemoved event handlers
mInkCollector.TabletAdded += new InkCollectorTabletAddedEventHandler(Event_OnTabletAdded);
mInkCollector.TabletRemoved += new InkCollectorTabletRemovedEventHandler(Event_OnTabletRemoved);

Платформы

Windows Vista

Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.

Сведения о версии

.NET Framework

Поддерживается в версии: 3.0

См. также

Ссылки

InkCollector Класс

InkCollector - члены

Microsoft.Ink - пространство имен

InkCollectorTabletRemovedEventArgs

Tablet

InkCollector.TabletAdded