Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
IStylusSyncPlugin.RealTimeStylusDisabled Method |
Informs the implementing plug-in that the RealTimeStylus is disabled.
Definition
Visual Basic .NET Public Sub RealTimeStylusDisabled( _
ByVal sender As RealTimeStylus, _
ByVal data As RealTimeStylusDisabledData _
)C# public void RealTimeStylusDisabled(
RealTimeStylus sender,
RealTimeStylusDisabledData data
);Managed C++ public: void RealTimeStylusDisabled(
RealTimeStylus *sender,
RealTimeStylusDisabledData *data
);
Parameters
sender Microsoft.StylusInput.RealTimeStylus. The RealTimeStylus that sent the disabled notification. data Microsoft.StylusInput.PluginData.RealTimeStylusDisabledData. Contains information about the tablets associated with this RealTimeStylus.
Examples
[C#]
This C# example alerts the developer when the plug-in is removed from the StylusSyncPluginCollection.
public void RealTimeStylusDisabled(RealTimeStylus sender, RealTimeStylusDisabledData data) { Debug.Assert(false, null, "This plug-in has been removed from the RealTimeStylusSyncPluginCollection."); }
See Also