Share via


InkOverlay.InkOverlay(Control, Tablet) Constructor

Initializes a new instance of the InkOverlay class and attaches it to a specified control on a specified Tablet object.

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

Syntax

'Declaration
Public Sub New ( _
    attachedControl As Control, _
    tablet As Tablet _
)
'Usage
Dim attachedControl As Control
Dim tablet As Tablet

Dim instance As New InkOverlay(attachedControl, tablet)
public InkOverlay (
    Control attachedControl,
    Tablet tablet
)
public:
InkOverlay (
    Control^ attachedControl, 
    Tablet^ tablet
)
public InkOverlay (
    Control attachedControl, 
    Tablet tablet
)
public function InkOverlay (
    attachedControl : Control, 
    tablet : Tablet
)
Not applicable.

Parameters

  • attachedControl
    The control to which the InkOverlay object is attached.
  • tablet
    The Tablet object to which the new window for the InkOverlay object is attached.

Example

This C# example initializes a new instance of the InkOverlay object, theInkOverlay, 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
{
    InkOverlay theInkOverlay;

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

        // Create and enable theInkOverlay.
        Tablets allTablets = new Tablets();
        theInkOverlay = new InkOverlay(this, allTablets.DefaultTablet);
        theInkOverlay.Enabled = true;
    }

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

This Microsoft Visual Basic .NET example initializes a new instance of the InkOverlay object, theInkOverlay, 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 theInkOverlay As InkOverlay

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

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

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
InkOverlay