Condividi tramite


Proprietà TextInputPanel.AttachedEditWindow

Aggiornamento: novembre 2007

Ottiene o imposta l'handle della finestra a cui è associato l'oggetto TextInputPanel.

Spazio dei nomi:  Microsoft.Ink.TextInput
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Sintassi

'Dichiarazione
Public Property AttachedEditWindow As IntPtr
'Utilizzo
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)

Valore proprietà

Tipo: System.IntPtr
Handle della finestra a cui è associato l'oggetto TextInputPanel.

Esempi

Nell'esempio viene creato un oggetto TextInputPanel, tip, che viene associato a un controllo TextBox, textBox1, impostando la proprietà AttachedEditWindow.

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

Piattaforme

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

TextInputPanel Classe

Membri TextInputPanel

Spazio dei nomi Microsoft.Ink.TextInput