InkPicture.SetAllTabletsMode Method

InkPicture.SetAllTabletsMode Method

Sets the InkPicture control to collect ink from any tablet attached to the Tablet PC.

Definition

Visual Basic .NET Public Sub SetAllTabletsMode()
C# public void SetAllTabletsMode();
Managed C++ public: void SetAllTabletsMode();

Remarks

This is the default mode for an InkPicture control. To allow the InkPicture control to collect ink from only one tablet, call the SetSingleTabletIntegratedMode method.

In addition to the pen, the mouse is used for input.

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 an InkPicture control 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

[C#]

This C# example calls SetAllTabletsMode on a new InkPicture control, theInkPicture.

using Microsoft.Ink;
// . . .
Tablets theTablets = new Tablets();
InkPicture theInkPicture = new InkPicture();
theInkPicture.SetAllTabletsMode();

[VB.NET]

This Microsoft® Visual Basic® .NET example calls SetAllTabletsMode on a new InkPicture control, theInkPicture.

Imports Microsoft.Ink
' . . .
Dim theTablets As New Tablets()
Dim theInkPicture As New InkPicture()
theInkPicture.SetAllTabletsMode()

See Also