InkPicture.SetSingleTabletIntegratedMode Method
InkPicture.SetSingleTabletIntegratedMode Method |
Sets the InkPicture control to collect ink from only one tablet attached to the Tablet PC. Ink from other tablets is ignored by the InkPicture control.
Definition
Visual Basic .NET Public Sub SetSingleTabletIntegratedMode( _
ByVal tablet As Tablet _
)C# public void SetSingleTabletIntegratedMode(
Tablet tablet
);Managed C++ public: void SetSingleTabletIntegratedMode(
Tablet *tablet
);
Parameters
tablet Microsoft.Ink.Tablet. The Tablet object on which ink is collected.
Exceptions
COMException :
ObjectDisposedException : The InkPicture control is disposed.
Remarks
To allow the InkPicture control to collect ink from any tablet attached to the Tablet PC, call the SetAllTabletsMode method.
Note: The InkPicture control must be disabled before calling this method. To disable the InkPicture control, set the InkEnabled property to false. After calling the SetAllTabletsMode method, enable the InkPicture control by setting the InkEnabled property to true.
When this method is called, the Cursors property is set to the empty collection.
Examples
[C#]
This C# example calls SetSingleTabletIntegratedMode on a new InkPicture control, theInkPicture, with the input set to use only the default Tablet object of a Tablets collection, theTablets.
using Microsoft.Ink; // . . . InkPicture theInkPicture = new InkPicture(); Tablets theTablets = new Tablets(); theInkPicture.SetSingleTabletIntegratedMode(theTablets.DefaultTablet);
[VB.NET]
This Microsoft® Visual Basic® .NET example calls SetSingleTabletIntegratedMode on a new InkPicture control, theInkPicture, with the input set to use only the default Tablet object of a Tablets collection, theTablets.
Imports Microsoft.Ink ' . . . Dim theInkPicture As New InkPicture() Dim theTablets As New Tablets() theInkPicture.SetSingleTabletIntegratedMode(theTablets.DefaultTablet)