Bagikan melalui


InkCollector Constructor (IntPtr, Tablet)

Creates an InkCollector object and attaches it to a specified window handle on a specified tablet.

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

Syntax

'Declaration
Public Sub New ( _
    handle As IntPtr, _
    tablet As Tablet _
)
'Usage
Dim handle As IntPtr 
Dim tablet As Tablet 

Dim instance As New InkCollector(handle, _
    tablet)
public InkCollector(
    IntPtr handle,
    Tablet tablet
)
public:
InkCollector(
    IntPtr handle, 
    Tablet^ tablet
)
public function InkCollector(
    handle : IntPtr, 
    tablet : Tablet
)

Parameters

Remarks

The newly created InkCollector object can collect ink on the specified window surface.

Depending on which Tablet is chosen, the pen or the mouse may be used for input.

Security noteSecurity Note:

If using under partial trust, this constructor requires SecurityPermissionFlag.UnmanagedCode permission, in addition to the permissions required by InkCollector. See Security And Trust for more information.

Examples

This C# example initializes a new instance of the InkCollector object, theInkCollector, associates it with the window handle of the form and the default Tablet, and then enables it.

using System;
using System.Drawing;
using System.Windows.Forms;
using Microsoft.Ink;

class MinimumInkApp : System.Windows.Forms.Form
{
InkCollector theInkCollector;

public MinimumInkApp()
{
 // Initialize the form.
 this.Text = "Minimum Ink Application";

 // Create and enable theInkCollector.
 Tablets allTablets = new Tablets();
 theInkCollector = new InkCollector(Handle, allTablets.DefaultTablet);
 theInkCollector.Enabled = true;
}

public static void Main()
{
 Application.Run(new MinimumInkApp());
}
}

This Microsoft Visual Basic .NET example initializes a new instance of the InkCollector object, theInkCollector, associates it with the window handle of the form and the default Tablet, and then enables it.

Imports System.Windows.Forms
Imports Microsoft.Ink
Public Class MinimumInkApp
Inherits System.Windows.Forms.Form

Dim theInkCollector As InkCollector

Public Sub New()
 MyBase.New()
 'Initialize the form.
 Me.Text = "Minimum Ink Application"
 
 'Create and enable theInkCollector.
 Dim allTablets As New Tablets()
 theInkCollector = New InkCollector(Handle, allTablets.DefaultTablet)
 theInkCollector.Enabled = True
End Sub

Public Shared Sub Main()
 Application.Run(New MinimumInkApp())
End Sub
End Class

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

InkCollector Overload

Microsoft.Ink Namespace

InkCollector