TextInputPanel.CurrentCorrectionMode-Eigenschaft
Ruft den Wert ab, mit dem eine Anwendung die aktuelle Konfiguration des Korrekturbereichs bestimmen kann.
Namespace: Microsoft.Ink.TextInput
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Syntax
'Declaration
Public ReadOnly Property CurrentCorrectionMode As CorrectionMode
'Usage
Dim instance As TextInputPanel
Dim value As CorrectionMode
value = instance.CurrentCorrectionMode
public CorrectionMode CurrentCorrectionMode { get; }
public:
property CorrectionMode CurrentCorrectionMode {
CorrectionMode get ();
}
/** @property */
public CorrectionMode get_CurrentCorrectionMode()
public function get CurrentCorrectionMode () : CorrectionMode
Eigenschaftenwert
Typ: Microsoft.Ink.TextInput.CorrectionMode
Der Wert, mit dem eine Anwendung die aktuelle Konfiguration des Korrekturbereichs bestimmen kann.
Beispiele
Im folgenden Beispiel wird die Verwendung von CurrentCorrectionMode veranschaulicht. tip_CorrectionModeChanging ist ein Ereignishandler für das CorrectionModeChanging-Ereignis. Das tip-Objekt ist eine Instanz von TextInputPanel. Mit dem OldMode-Wert und dem CurrentCorrectionMode-Wert wird die TextBox.Text-Eigenschaft der TextBoxoutputTextBox festgelegt. OldMode und CurrentCorrectionMode enthalten einen der CorrectionMode-Werte.
Sub tip_CorrectionModeChanging(ByVal sender As Object, ByVal e As CorrectionModeChangeEventArgs)
outputTextBox.Text += "Old Correction Mode is " + e.OldMode.ToString() + Environment.NewLine
outputTextBox.Text += "Current Correction Mode is " + tip.CurrentCorrectionMode.ToString() + Environment.NewLine
End Sub
void tip_CorrectionModeChanging(object sender, CorrectionModeChangeEventArgs e)
{
outputTextBox.Text += "Old Correction Mode is " + e.OldMode + Environment.NewLine;
outputTextBox.Text += "Current Correction Mode is " + tip.CurrentCorrectionMode + 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