Freigeben über


TextInputPanel.CurrentInPlaceState-Eigenschaft

Ruft den aktuellen direkten Zustand des Eingabebereichs ab.

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

Syntax

'Declaration
Public ReadOnly Property CurrentInPlaceState As InPlaceState
'Usage
Dim instance As TextInputPanel
Dim value As InPlaceState

value = instance.CurrentInPlaceState
public InPlaceState CurrentInPlaceState { get; }
public:
property InPlaceState CurrentInPlaceState {
    InPlaceState get ();
}
/** @property */
public InPlaceState get_CurrentInPlaceState()
public function get CurrentInPlaceState () : InPlaceState

Eigenschaftenwert

Typ: Microsoft.Ink.TextInput.InPlaceState
Der aktuelle direkte Zustand des Eingabebereichs wie von der InPlaceState-Enumeration angegeben.

Hinweise

Wenn der Eingabebereich geschlossen oder ausgeblendet ist, wird der aktuelle direkte Zustand auf den Standardzustand zurückgesetzt, außer der Standardzustand lautet Auto. In diesem Fall wird der aktuelle direkte Zustand auf HoverTarget zurückgesetzt.

Beispiele

Im folgenden Beispiel wird die Verwendung von CurrentInPlaceState veranschaulicht. Das tip-Objekt ist eine Instanz von TextInputPanel. Mit dem CurrentInPlaceState-Wert wird die TextBox.Text-Eigenschaft der TextBoxoutputTextBox festgelegt.

outputTextBox.Text += "Current In Place State is " + tip.CurrentInPlaceState.ToString() + Environment.NewLine
outputTextBox.Text += "Current In Place State is " + tip.CurrentInPlaceState + Environment.NewLine;

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