InPlaceStateChangeEventArgs.OldState (Propiedad)
Actualización: noviembre 2007
Obtiene el estado en contexto actual.
Espacio de nombres: Microsoft.Ink.TextInput
Ensamblado: Microsoft.Ink (en Microsoft.Ink.dll)
Sintaxis
'Declaración
Public ReadOnly Property OldState As InPlaceState
'Uso
Dim instance As InPlaceStateChangeEventArgs
Dim value As InPlaceState
value = instance.OldState
public InPlaceState OldState { get; }
public:
property InPlaceState OldState {
InPlaceState get ();
}
/** @property */
public InPlaceState get_OldState()
public function get OldState () : InPlaceState
Valor de propiedad
Tipo: Microsoft.Ink.TextInput.InPlaceState
Estado en contexto actual.
Ejemplos
En este ejemplo se define un controlador del evento InPlaceStateChanging donde el valor de OldState se usa para establecer propiedad TextBox.Text de un control 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;
}
Plataformas
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.
Información de versión
.NET Framework
Compatible con: 3.0
Vea también
Referencia
InPlaceStateChangeEventArgs (Clase)