Share via


InkCollector.SetAllTabletsMode Method

Sets the InkCollector 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 InkCollector

instance.SetAllTabletsMode()
public void SetAllTabletsMode()
public:
void SetAllTabletsMode()
public function SetAllTabletsMode()

Remarks

This is the default mode for an InkCollector object. To allow the InkCollector 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 InkCollector object must be disabled before calling this method. To disable the InkCollector object, set the Enabled property to false. After calling the SetAllTabletsMode method, enable the InkCollector object by setting the Enabled property to true.

When an InkCollector 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.

Examples

This C# example calls SetAllTabletsMode on a new InkCollector object, theInkCollector.

using Microsoft.Ink;
// . . .
Tablets theTablets = new Tablets();
InkCollector theInkCollector = new InkCollector();
theInkCollector.SetAllTabletsMode();

This Microsoft Visual Basic .NET example calls SetAllTabletsMode on a new InkCollector object, theInkCollector.

Imports Microsoft.Ink
' . . .
Dim theTablets As New Tablets()
Dim theInkCollector As New InkCollector()
theInkCollector.SetAllTabletsMode()

Platforms

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.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

InkCollector Class

InkCollector Members

SetAllTabletsMode Overload

Microsoft.Ink Namespace

SetAllTabletsMode

Tablets

InkCollector.Enabled

InkCollector.SetSingleTabletIntegratedMode