Compartir a través de


CorrectionModeChangeEventArgs.OldMode Property

Gets the current correction mode.

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
Not applicable.

Property Value

The current correction mode.

Example

The following example demonstrates the use of OldMode. tip_CorrectionModeChanging is an event handler for the CorrectionModeChanging event. The tip object is an instance of TextInputPanel. The OldMode and CurrentCorrectionMode values are used to set the TextBox.TextTextBox.Text property of a TextBoxTextBox, outputTextBox. OldMode and CurrentCorrectionMode contain one of the CorrectionMode values.

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;
}

Platforms

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

CorrectionModeChangeEventArgs Class
CorrectionModeChangeEventArgs Members
Microsoft.Ink.TextInput Namespace