InkOverlay.SetAllTabletsMode Method ()
Sets the InkOverlay object to collect ink from any tablet attached to the Tablet PC, including the mouse.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in microsoft.ink.dll)
Syntax
'Declaration
Public Sub SetAllTabletsMode
'Usage
Dim instance As InkOverlay
instance.SetAllTabletsMode
public void SetAllTabletsMode ()
public:
void SetAllTabletsMode ()
public void SetAllTabletsMode ()
public function SetAllTabletsMode ()
Not applicable.
Remarks
This is the default mode for an InkOverlay object. To allow the InkOverlay object to collect ink from only one tablet, call the SetSingleTabletIntegratedMode method.
In addition to the pen, the mouse is used for input.
Note
The InkOverlay object must be disabled before calling this method. To disable the InkOverlay object, set the Enabled property to false. After calling the SetAllTabletsMode method, enable the InkOverlay object by setting the Enabled property to true.
When an InkOverlay object switches from collecting ink by using a single tablet to collecting ink by using all tablets, the Cursors property is set to the empty collection.
Example
This C# example calls SetAllTabletsMode on a new InkOverlay object, theInkOverlay
.
using Microsoft.Ink;
// . . .
Tablets theTablets = new Tablets();
InkOverlay theInkOverlay = new InkOverlay();
theInkOverlay.SetAllTabletsMode();
This Microsoft Visual Basic .NET example calls SetAllTabletsMode on a new InkOverlay object, theInkOverlay
.
Imports Microsoft.Ink
' . . .
Dim theTablets As New Tablets()
Dim theInkOverlay As New InkOverlay()
theInkOverlay.SetAllTabletsMode()
Platforms
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
InkOverlay Class
InkOverlay Members
Microsoft.Ink Namespace
Cursors
InkOverlay.Enabled
InkOverlay.SetSingleTabletIntegratedMode