Freigeben über


TextInputPanel.AttachedEditWindow-Eigenschaft

Ruft das Fensterhandle ab, an das das TextInputPanel-Objekt angefügt ist, oder legt dieses Fensterhandle fest.

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

Syntax

'Declaration
Public Property AttachedEditWindow As IntPtr
'Usage
Dim instance As TextInputPanel
Dim value As IntPtr

value = instance.AttachedEditWindow

instance.AttachedEditWindow = value
public IntPtr AttachedEditWindow { get; set; }
public:
property IntPtr AttachedEditWindow {
    IntPtr get ();
    void set (IntPtr value);
}
/** @property */
public IntPtr get_AttachedEditWindow()
/** @property */
public  void set_AttachedEditWindow(IntPtr value)
public function get AttachedEditWindow () : IntPtr
public function set AttachedEditWindow (value : IntPtr)

Eigenschaftenwert

Typ: System.IntPtr
Das Fensterhandle, an das das TextInputPanel-Objekt angefügt wird.

Beispiele

In diesem Beispiel wird das TextInputPanel-Objekt tip erstellt und an das TextBox-Steuerelement textBox1 angefügt, indem die AttachedEditWindow-Eigenschaft festgelegt wird.

tip = New TextInputPanel()
tip.AttachedEditWindow = textBox1.Handle
tip = new TextInputPanel();
tip.AttachedEditWindow = textBox1.Handle;

Plattformen

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

TextInputPanel-Klasse

TextInputPanel-Member

Microsoft.Ink.TextInput-Namespace