Bagikan melalui


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.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Public Sub SetSingleTabletIntegratedMode ( _
    tablet As Tablet _
)
'Usage
Dim instance As InkPicture 
Dim tablet As Tablet

instance.SetSingleTabletIntegratedMode(tablet)
public void SetSingleTabletIntegratedMode(
    Tablet tablet
)
public:
void SetSingleTabletIntegratedMode(
    Tablet^ tablet
)
public function SetSingleTabletIntegratedMode(
    tablet : Tablet
)

Parameters

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

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.

[C#]

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

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.

[Visual Basic]

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

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

InkPicture Class

InkPicture Members

Microsoft.Ink Namespace