PenInputPanel.AttachedEditControl, propriété
Mise à jour : November 2007
Désapprouvé. Obtient ou définit le contrôle auquel l'objet PenInputPanel est attaché. PenInputPanel a été remplacé par Microsoft.Ink.TextInput.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
Public Property AttachedEditControl As Control
'Utilisation
Dim instance As PenInputPanel
Dim value As Control
value = instance.AttachedEditControl
instance.AttachedEditControl = value
public Control AttachedEditControl { get; set; }
public:
property Control^ AttachedEditControl {
Control^ get ();
void set (Control^ value);
}
/** @property */
public Control get_AttachedEditControl()
/** @property */
public void set_AttachedEditControl(Control value)
public function get AttachedEditControl () : Control
public function set AttachedEditControl (value : Control)
Valeur de propriété
Type : System.Windows.Forms.Control
Contrôle auquel l'objet PenInputPanel est attaché.
Notes
Les propriétés AttachedEditControl et AttachedEditWindow sont indépendantes. La définition d'une propriété ne met pas nécessairement l'autre à jour. Utilisez la propriété que vous avez utilisée pour attacher l'objet PenInputPanel à un contrôle ou à une fenêtre.
Exemples
Cet exemple C# crée un objet PenInputPanel, thePenInputPanel, et l'attache à un contrôle InkEdit, theInkEdit, via la définition de la propriété AttachedEditControl.
[C#]
// Declare and create a PenInputPanel
PenInputPanel thePenInputPanel = new PenInputPanel();
// Attach the PenInputPanel to an InkEdit control
thePenInputPanel.AttachedEditControl = theInkEdit;
Cet exemple Microsoft® Visual Basic® .NET crée un objet PenInputPanel, thePenInputPanelet l'attache à un contrôle InkEdit, theInkEdit, via la définition de la propriété AttachedEditControl.
[Visual Basic]
' Declare and create a PenInputPanel
Dim thePenInputPanel As New PenInputPanel()
' Attach the PenInputPanel to an InkEdit control
thePenInputPanel.AttachedEditControl = theInkEdit
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0
Voir aussi
Référence
PenInputPanel.AttachedEditControl