Partager via


InPlaceStateChangeEventArgs.OldState, propriété

Mise à jour : November 2007

Obtient l'état contextuel actuel.

Espace de noms :  Microsoft.Ink.TextInput
Assembly :  Microsoft.Ink (dans Microsoft.Ink.dll)

Syntaxe

'Déclaration
Public ReadOnly Property OldState As InPlaceState
'Utilisation
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

Valeur de propriété

Type : Microsoft.Ink.TextInput.InPlaceState
État contextuel actuel.

Exemples

Cet exemple définit un gestionnaire d'événements pour l'événement InPlaceStateChanging où la valeur OldState est utilisée pour définir la propriété TextBox.Text (page pouvant être en anglais) d'un TextBox (page pouvant être en anglais), 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;
}

Plateformes

Windows Vista, Windows XP SP2, Windows Server 2003

Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.

Informations de version

.NET Framework

Pris en charge dans : 3.0

Voir aussi

Référence

InPlaceStateChangeEventArgs, classe

Membres InPlaceStateChangeEventArgs

Microsoft.Ink.TextInput, espace de noms