CorrectionModeChangeEventArgs Class
Provides data for the CorrectionModeChanging and CorrectionModeChanged events.
Namespace: Microsoft.Ink.TextInput
Assembly: Microsoft.Ink (in microsoft.ink.dll)
Syntax
'Declaration
Public Class CorrectionModeChangeEventArgs
Inherits EventArgs
'Usage
Dim instance As CorrectionModeChangeEventArgs
public class CorrectionModeChangeEventArgs : EventArgs
public ref class CorrectionModeChangeEventArgs : public EventArgs
public class CorrectionModeChangeEventArgs extends EventArgs
public class CorrectionModeChangeEventArgs extends EventArgs
Not applicable.
Example
The following example demonstrates the use of CorrectionModeChangeEventArgs. tip_CorrectionModeChanging
is an event handler for the CorrectionModeChanging event. The object, tip,
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;
}
Inheritance Hierarchy
System.Object
System.EventArgs
Microsoft.Ink.TextInput.CorrectionModeChangeEventArgs
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
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 Members
Microsoft.Ink.TextInput Namespace