Share via


InPlaceStateChangeEventArgs.OldState Property

Gets the current in-place state.

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

Syntax

'Declaration
Public ReadOnly Property OldState As InPlaceState
'Usage
Dim instance As InPlaceStateChangeEventArgs 
Dim value As InPlaceState 

value = instance.OldState
public InPlaceState OldState { get; }
public:
property InPlaceState OldState {
    InPlaceState get ();
}
public function get OldState () : InPlaceState

Property Value

Type: Microsoft.Ink.TextInput.InPlaceState
The current in-place state.

Examples

This example defines an event handler for the InPlaceStateChanging event where the OldState value is used to set the TextBox.Text property of a TextBox, outputTextBox.

Sub tip_InPlaceStateChanging(ByVal sender As Object, ByVal e As InPlaceStateChangeEventArgs)
    outputTextBox.Text += "In Place State Changing from " + e.OldState.ToString() + Environment.NewLine
End Sub
void tip_InPlaceStateChanging(object sender, InPlaceStateChangeEventArgs e)
{
    outputTextBox.Text += "In Place State Changing from " + e.OldState + Environment.NewLine;
}

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

InPlaceStateChangeEventArgs Class

InPlaceStateChangeEventArgs Members

Microsoft.Ink.TextInput Namespace