Freigeben über


TextInputPanel.ExpandPostInsertionCorrection-Eigenschaft

Ruft einen Wert ab, der angibt, ob der Korrekturbereich im Tablet PC-Eingabebereich automatisch erweitert wird, oder legt diesen Wert fest.

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

Syntax

'Declaration
Public Property ExpandPostInsertionCorrection As Boolean
'Usage
Dim instance As TextInputPanel
Dim value As Boolean

value = instance.ExpandPostInsertionCorrection

instance.ExpandPostInsertionCorrection = value
public bool ExpandPostInsertionCorrection { get; set; }
public:
property bool ExpandPostInsertionCorrection {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_ExpandPostInsertionCorrection()
/** @property */
public  void set_ExpandPostInsertionCorrection(boolean value)
public function get ExpandPostInsertionCorrection () : boolean
public function set ExpandPostInsertionCorrection (value : boolean)

Eigenschaftenwert

Typ: System.Boolean
true , wenn der Korrekturbereich im Tablet PC-Eingabebereich automatisch erweitert wird, andernfalls false.

Beispiele

Im folgenden Beispiel wird die Verwendung von ExpandPostInsertionCorrection veranschaulicht. Das tip-Objekt ist eine Instanz von TextInputPanel.

tip = New TextInputPanel()
tip.AttachedEditWindow = textBox1.Handle
tip.DefaultInPlaceState = InPlaceState.Expanded
tip.ExpandPostInsertionCorrection = True
tip = new TextInputPanel();
tip.AttachedEditWindow = textBox1.Handle;
tip.DefaultInPlaceState = InPlaceState.Expanded;
tip.ExpandPostInsertionCorrection = true;

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