CorrectionModeChangeEventArgs.OldMode-Eigenschaft
Ruft den aktuellen Korrekturmodus ab.
Namespace: Microsoft.Ink.TextInput
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Syntax
'Declaration
Public ReadOnly Property OldMode As CorrectionMode
'Usage
Dim instance As CorrectionModeChangeEventArgs
Dim value As CorrectionMode
value = instance.OldMode
public CorrectionMode OldMode { get; }
public:
property CorrectionMode OldMode {
CorrectionMode get ();
}
/** @property */
public CorrectionMode get_OldMode()
public function get OldMode () : CorrectionMode
Eigenschaftenwert
Typ: Microsoft.Ink.TextInput.CorrectionMode
Der aktuelle Korrekturmodus.
Beispiele
Im folgenden Beispiel wird die Verwendung von OldMode 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
Siehe auch
Referenz
CorrectionModeChangeEventArgs-Klasse